.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
:root {
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
}
.app-texture {
  position: relative;
  isolation: isolate;
}
.app-texture::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(1200px 560px at 12% -8%, rgba(56, 189, 248, 0.07), transparent 60%),
    radial-gradient(900px 460px at 88% 8%, rgba(14, 165, 233, 0.05), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}
.app-texture::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.8) 0px,
    rgba(255, 255, 255, 0.8) 1px,
    transparent 1px,
    transparent 3px
  );
}
.typo-title {
  letter-spacing: -0.01em;
  font-weight: 650;
}
.typo-section-title {
  letter-spacing: -0.005em;
  font-weight: 620;
}
.modal-title {
  font-size: 1.0625rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 650;
  color: #f8fafc;
}
.modal-title-sm {
  font-size: 0.975rem;
  line-height: 1.3;
  letter-spacing: -0.008em;
  font-weight: 640;
  color: #f8fafc;
}
.modal-subtitle {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #cbd5e1;
}
.modal-subtitle-sm {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #94a3b8;
}
.modal-body-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #cbd5e1;
}
.checkout-halo {
  position: absolute;
  inset: -10px 14px auto;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.32) 0%, rgba(56, 189, 248, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}
.review-halo {
  position: absolute;
  inset: -16px 22px auto;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0) 75%);
  filter: blur(9px);
  pointer-events: none;
}
.step-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.65rem;
  padding: 0.2rem 0;
  color: #7dd3fc;
}
.step-bridge__rule {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0), rgba(125, 211, 252, 0.42), rgba(125, 211, 252, 0));
}
.step-bridge__nub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  background: rgba(56, 189, 248, 0.12);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.22);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.step-bridge--interactive:hover .step-bridge__nub {
  transform: translateY(1px);
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(125, 211, 252, 0.45);
}
.step-bridge--interactive:focus-visible {
  outline: none;
}
.step-bridge--interactive:focus-visible .step-bridge__nub {
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.3), 0 8px 18px rgba(2, 132, 199, 0.22);
}
@keyframes hero-arrow-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}
@keyframes tab-halo-pop {
  0% {
    opacity: 0;
    transform: translateY(-4px) scale(0.9);
    filter: blur(10px);
  }
  45% {
    opacity: 1;
    transform: translateY(0) scale(1.05);
    filter: blur(8px);
  }
  100% {
    opacity: 0.68;
    transform: translateY(0) scale(1);
    filter: blur(8px);
  }
}
@keyframes tab-topline-sweep {
  0% {
    opacity: 0;
    transform: translateX(-26%);
  }
  45% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0.72;
    transform: translateX(0);
  }
}
@keyframes tab-active-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.28);
  }
  55% {
    box-shadow: 0 0 0 7px rgba(56, 189, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}
.tab-just-activated [data-tab-halo] {
  animation: tab-halo-pop 300ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}
.tab-just-activated [data-tab-topline] {
  animation: tab-topline-sweep 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tab-just-activated {
  animation: tab-active-pulse 260ms ease-out both;
}
@keyframes amount-picked-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.35);
  }
  50% {
    transform: scale(1.01);
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}
.amount-picked-pulse {
  animation: amount-picked-pulse 340ms ease-out;
}
.tab-disabled {
  pointer-events: none !important;
  cursor: default !important;
}
:where(a[data-tab-link], button, input, [data-amount-option]) {
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 160ms ease;
}
:where(a[data-tab-link], button, input, [data-amount-option]):focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.32);
}
:where(button:not([data-amount-option])):active {
  transform: scale(0.985);
}
:where(button, [data-amount-option])[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Button hierarchy */
.btn-primary {
  border: 1px solid rgba(125, 211, 252, 0.38);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.24), rgba(14, 165, 233, 0.2));
  color: #e0f2fe;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.2);
}
.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.65);
  color: #e2e8f0;
}
.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.72);
  border-color: rgba(148, 163, 184, 0.32);
}

.btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #cbd5e1;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.28);
}
@keyframes panel-enter-down {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.997);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes panel-exit-up {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0.22;
    transform: translateY(-6px) scale(0.998);
  }
}
.panel-enter-down {
  animation: panel-enter-down 180ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  will-change: transform, opacity;
}
.panel-exit-up {
  animation: panel-exit-up 130ms cubic-bezier(0.4, 0, 1, 1) both;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .panel-enter-down,
  .panel-exit-up {
    animation: none !important;
  }
}
@media (max-width: 380px) {
  .tight-mobile-title {
    font-size: 1.56rem;
    line-height: 1.2;
  }
  .tight-mobile-chip {
    padding-inline: 0.5rem;
  }
}
.session-strip-root.session-strip-guest {
  border-color: rgba(255, 255, 255, 0.065);
}
.session-strip-root.session-strip-signed {
  border-color: rgba(110, 231, 183, 0.16);
  box-shadow: inset 0 1px 0 rgba(167, 243, 208, 0.05), 0 0 0 1px rgba(52, 211, 153, 0.04);
}

/* Success modal — ince kaydırma çubuğu */
.thin-scrollbar::-webkit-scrollbar {
  width: 5px;
}
.thin-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.thin-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.28);
}
.thin-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.38) transparent;
}

/* 404 — toolbar yok; panel tam ortada + güvenli alan ile dış dolgu */
.page-not-found-shell {
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: max(1rem, env(safe-area-inset-top, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
}
@media (min-width: 640px) {
  .page-not-found-shell {
    padding-top: max(1.5rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
  }
}
.page-not-found-panel__inner {
  width: 100%;
  padding: 1.25rem; /* Tailwind p-5; bundle’da sınıf yoktu → sabit CSS */
}
@media (min-width: 640px) {
  .page-not-found-panel__inner {
    padding: 2.5rem;
  }
}
