* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  background-color: #007bff;
  color: white;
  font-weight: 200;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.header-bar {
  height: 8vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  background-color: #007bff;
}
.logo img {
  height: 30px;
}
.notification-icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
}
.notification-icons i {
  cursor: pointer;
}
.nav-bar-center {
  height: 5vh;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.nav-bar-center span {
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  opacity: 0.7;
  padding: 10px 0;
  position: relative;
  letter-spacing: 1px;
}
.nav-bar-center .active {
  opacity: 1;
}
.nav-bar-center .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 4px;
  background-color: white;
  border-radius: 6px;
}
.nav-bar-center span:hover {
  opacity: 1;
}
.welcome-text {
  height: 22vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome-text .welcome-line {
  display: block;
  font-size: 25px;
  font-weight: 400;
}
.welcome-text .welcome-bold {
  display: block;
  font-size: 24px;
  font-weight: 700;
}
.button-container {
  height: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-button {
  background-color: white;
  color: #007bff;
  border: none;
  padding: 20px 45px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.login-button:hover {
  background-color: #f0f0f0;
}
.customer-text {
  height: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.wave-divider {
  position: relative;
  height: 59px;
  background: transparent;
  margin-bottom: -36px;
}
.wave-divider.mirrored {
  position: relative;
  top: -22px;
  transform: scaleX(-1);
  opacity: 1;
  pointer-events: none;
}
.content-area {
  height: 50vh;
  background: linear-gradient(to top, #bdbdbd, #ffffff);
  padding: 15px;
  position: relative;
  margin-bottom: 85px;
  overflow: hidden;
}
.story-container {
  display: flex;
  gap: 6px;
  padding-left: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 110px;
  justify-content: flex-start;
  z-index: 100;
  background: transparent;
}
.story-container::-webkit-scrollbar {
  display: none;
}
.story-item {
  flex: 0 0 auto;
  width: 90px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  background: none;
}
.story-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  position: relative;
  background: #007bff;
  border: 3px solid transparent;
  background-clip: padding-box;
}
.story-icon::before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0066, #ffcc00);
}
.story-icon i {
  position: relative;
  z-index: 1;
}
.story-text {
  margin-top: 8px;
  font-size: 12px;
  color: #000;
  font-weight: 600;
  max-width: 80px;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.2;
}
.cards-container {
  position: absolute;
  top: 140px;
  left: 10px;
  right: -20px;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 40px;
}
.cards-container::-webkit-scrollbar {
  display: none;
}
.market-card {
  flex: 0 0 auto;
  min-width: 250px;
  height: 110px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
}
.market-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
.market-icon {
  color: #007bff;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 6%;
}
.market-title {
  margin-top: 15px;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 180px;
}
.market-subtitle {
  color: #7f8c8d;
  font-size: 14px;
  margin-top: 4px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 180px;
}
.bottom-nav {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 85px;
  background: white;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 12px 10px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding-top: 8px;
  width: 20%;
}
.nav-item i {
  font-size: 22px;
  color: #84909d;
}
.nav-item.active {
  background: #e2136e;
  border-radius: 0 0 32px 32px;
  margin-top: -12px;
  padding: 12px 0;
  position: relative;
}
.nav-item.active i {
  color: white;
  font-size: 24px;
}
.nav-text {
  font-size: 11px;
  color: #84909d;
  font-weight: 500;
  text-align: center;
}
.nav-item.active .nav-text {
  color: white;
}
.login-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  z-index: 1000;
}
.login-modal.show {
  transform: translateY(0);
}
.login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.header-text {
  color: #00a0e3;
  font-size: 18px;
  font-weight: 600;
}
.close-button {
  border: none;
  background: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
}
.input-group {
  margin-bottom: 20px;
}
.input-group label {
  color: #666;
  font-size: 18px;
  margin-bottom: 8px;
}
.input-group input[type="text"],
.input-group input[type="password"] {
  width: 100%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 10px;
  -webkit-text-size-adjust: 100%;
}
.custom-checkbox {
  appearance: none;
  width: 40px;
  height: 25px;
  border: 1px solid black;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  margin-right: 5px;
}
.custom-checkbox:checked {
  background-color: #007bff;
}
.password-input {
  position: relative;
  display: flex;
  align-items: center;
}
.password-input input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  padding-right: 40px;
}
.password-input i {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: #666;
  font-size: 18px;
  transition: color 0.3s ease;
}
.password-input i:hover {
  color: #000;
}
.remember-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
.checkbox-container input[type="checkbox"] {
  margin: 0;
  width: 12px;
  height: 12px;
  accent-color: #00a0e3;
}
.checkbox-text {
  font-size: 16px;
  color: #333;
  margin-top: 2px;
}
.user-create {
  color: #00a0e3;
  text-decoration: none;
  font-size: 16px;
}
.forgot-password {
  color: #00a0e3;
  text-decoration: none;
  font-size: 18px;
}
.entry-button {
  width: 100%;
  padding: 20px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0;
}
.bottom-text {
  text-align: center;
  margin-top: 30px;
}
.bottom-text p {
  color: #003399;
  font-size: 16px;
  margin-bottom: 15px;
}
.register-button {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: 2px solid #00a0e3;
  border-radius: 8px;
  color: #00a0e3;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 35px;
}
.forgot-link {
  color: #00a0e3;
  text-decoration: none;
  font-size: 16px;
  display: block;
  text-align: right;
  margin-top: 5px;
  margin-top: -14px;
}
.sms-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.4s ease;
  transform: translateY(0);
  color: #333;
  padding-bottom: 10vh;
  display: none;
}
.sms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.sms-title {
  color: #00a0e3;
  font-size: 20px;
  font-weight: 600;
}
.sms-close-button {
  border: none;
  background: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
}
.sms-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sms-input-group {
  margin-bottom: 20px;
}
.sms-input-group label {
  color: #666;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}
.sms-input-container {
  position: relative;
  display: flex;
  align-items: center;
}
.sms-input-container input {
  width: 70%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 18px;
  padding-right: 70px;
  text-align: left;
  box-sizing: border-box;
}
.sms-timer {
  position: absolute;
  right: 10px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}
.sms-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  background: #f0f4f7;
  border-radius: 6px;
  padding: 10px;
  line-height: 1.4;
}
.info-icon {
  color: #007bff;
  font-size: 18px;
  flex-shrink: 0;
}
.sms-text {
  color: #333;
  font-weight: 400;
}
.sms-text strong {
  font-weight: 700;
}
.resend-code {
  text-align: center;
  color: #999;
  font-size: 16px;
  cursor: pointer;
  margin-top: 40px;
  margin-bottom: 40px;
}
.resend-code.active {
  color: #007bff;
}
.sms-continue-button {
  width: 90%;
  padding: 15px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  bottom: 15px;
  cursor: not-allowed;
  position: absolute;
}
.sms-continue-button.active {
  background: #007bff;
  cursor: pointer;
}
.circle-timer {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
}
.timer-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.background-circle {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 6;
}
.progress-circle {
  fill: none;
  stroke: #007bff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}
.timer-text {
  font-size: 16px;
  font-weight: bold;
  fill: #333;
  text-anchor: middle;
}
.show {
  display: block !important;
}
.alert {
  color: red;
  display: none;
}
.hidden {
  display: none;
}
.error {
  border-color: red !important;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.done-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.4s ease;
  transform: translateY(0);
  color: #333;
  padding-bottom: 20vh;
  display: none;
}
.done-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.done-title {
  color: #00a0e3;
  font-size: 20px;
  font-weight: 600;
}
.done-close-button {
  border: none;
  background: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
}
.done-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.done-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  border-radius: 6px;
  padding: 10px;
  line-height: 1.4;
}
.done-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}
.done-icon {
  font-size: 100px;
  color: #007bff;
  margin-bottom: 20px;
}
.done-success-text {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.center {
    display: flex; /* Flexbox kullanarak hizalama yap */
    justify-content: center; /* Yatay eksende ortala */
    align-items: center; /* Dikey eksende ortala (eğer bir container içinde kullanılıyorsa) */
    text-align: center; /* Metinleri ortala */
    flex-direction: column; /* İçeriği dikey hizala */
    width: 100%; /* Tüm genişliği kaplamasını sağla */
}
