/* SoloBet Landing — Gilroy + navy/yellow brand */

@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #0a1219;
  --color-bg-elevated: #10212e;
  --color-bg-soft: #152937;
  --color-surface: #1a3040;
  --color-border: rgba(255, 255, 255, 0.08);

  --color-primary: #f7e522;
  --color-primary-hover: #ffe84a;
  --color-primary-deep: #d4c41a;
  --color-accent: #ff8a1f;

  --color-text: #f4f6f8;
  --color-text-muted: #9aadb8;
  --color-text-inverse: #10212e;

  --font-display: "Gilroy", "Segoe UI", sans-serif;
  --font-body: "Gilroy", "Segoe UI", sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: clamp(1.75rem, 3vw, 2.25rem);
  --fs-3xl: clamp(2.25rem, 5vw, 3.5rem);
  --fs-brand: clamp(3.25rem, 10vw, 6.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-cta: 0 8px 24px rgba(247, 229, 34, 0.28);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);

  --header-h: 68px;
  --container: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 180ms var(--ease-out);
  --transition-normal: 320ms var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 1000;
  padding: var(--space-3) var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-4);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 18, 25, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.site-header.is-scrolled {
  background: rgba(10, 18, 25, 0.94);
  border-bottom-color: var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header: taç + SoloBet yazısı (tam logo) */
.site-logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.site-logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

.site-nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .header-actions {
    gap: var(--space-3);
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
  will-change: transform;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--lg {
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  font-size: var(--fs-base);
}

.btn--sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: var(--fs-xs);
}

/* Emoji Burst — Kayıt Ol (Framer MobileHaptics port)
   objectColor #F2E500 · textColor #000 · radius 10 */
.haptic-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  vertical-align: middle;
}

.haptic-wrap--lg {
  min-width: 160px;
  min-height: 72px;
}

.haptic-wrap--sm {
  min-height: 44px;
}

.haptic-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.btn--haptic {
  position: relative;
  z-index: 2;
  background: #f2e500;
  color: #000;
  border: none;
  border-radius: 15px; /* radius 10 → (10/20)*30 */
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(242, 229, 0, 0.28);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn--haptic:hover {
  background: #ffe84a;
  color: #000;
  transform: translateY(-2px);
}

.btn--haptic:active {
  transform: translateY(0);
}

.btn--haptic.btn--sm {
  font-size: var(--fs-xs);
  border-radius: 12px;
  padding: 0.55rem 1.1rem;
}

.btn--haptic.btn--lg {
  font-size: 1.25rem;
  padding: 1rem 1.75rem;
  min-height: 52px;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__picture,
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  /* Portrait mobil: yüz + üst kompozisyon; alt yazı hero CTA’nın altında kalabilir */
  object-position: center 28%;
  transform: scale(1.04);
  animation: kenburns 22s var(--ease-out) infinite alternate;
}

@media (min-width: 900px) {
  .hero__media img {
    object-position: center center;
    transform: scale(1.08);
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      105deg,
      rgba(8, 14, 20, 0.92) 0%,
      rgba(8, 14, 20, 0.72) 38%,
      rgba(8, 14, 20, 0.28) 62%,
      rgba(8, 14, 20, 0.45) 100%
    ),
    linear-gradient(to top, rgba(10, 18, 25, 0.95) 0%, transparent 42%);
}

@media (max-width: 899px) {
  .hero__scrim {
    background:
      linear-gradient(to top, rgba(10, 18, 25, 0.96) 18%, rgba(10, 18, 25, 0.55) 55%, rgba(10, 18, 25, 0.35) 100%);
  }
}

.hero__shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  padding: var(--space-10) 0 calc(var(--space-16) + 3.25rem);
}

.hero__content {
  width: 100%;
  max-width: 36rem;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Deneme bonusu — tek öne çıkan kart (sağ) */
.hero__feature {
  display: block;
  position: relative;
  width: min(200px, 52vw);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(247, 229, 34, 0.22);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero__feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__feature:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(247, 229, 34, 0.4);
}

@media (min-width: 900px) {
  .hero {
    align-items: center;
    justify-content: center;
  }

  .hero__shell {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: var(--space-12) 0 calc(clamp(3rem, 7vh, 4.5rem) + 2rem);
  }

  .hero__content {
    text-align: left;
    flex: 1 1 auto;
    max-width: 34rem;
  }

  .hero__feature {
    width: min(268px, 26vw);
  }
}

/* İkon + SoloBet (Gilroy Bold) yan yana — oran dengeli */
.hero__lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 var(--space-5);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  max-width: 100%;
}

.hero__mark {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  object-position: center;
}

.hero__wordmark {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex: 0 1 auto;
}

.hero__wordmark-solo {
  color: #fff;
}

.hero__wordmark-bet {
  background: linear-gradient(180deg, #ffe14a 0%, #f7b520 45%, #ff8a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 900px) {
  .hero__lockup {
    justify-content: flex-start;
    gap: 0.9rem;
  }

  .hero__mark {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .hero__wordmark {
    font-size: 2.65rem;
  }
}

.hero__headline {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}

.hero__support {
  margin: 0 auto var(--space-8);
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 28rem;
}

@media (min-width: 900px) {
  .hero__support {
    margin-inline: 0;
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: var(--space-3);
}

/* İkinci satırdaki tek buton (Blackjack) satırda ortalansın */
.hero__ctas > .btn--secondary:last-of-type {
  flex: 1 1 100%;
  max-width: 16.5rem;
  margin-inline: auto;
  text-align: center;
  box-sizing: border-box;
}

.hero__scroll {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 3;
}

.hero__scroll::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--color-primary);
  animation: scroll-dot 1.6s var(--ease-out) infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ——— Sections shared ——— */
.section {
  padding: var(--space-20) 0;
  position: relative;
}

.section__eyebrow {
  display: inline-block;
  margin: 0 0 var(--space-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section__lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  max-width: 36rem;
}

.section-head {
  margin-bottom: var(--space-10);
  text-align: center;
}

.section-head .section__lead {
  margin-inline: auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}
.reveal-delay-2 {
  transition-delay: 160ms;
}
.reveal-delay-3 {
  transition-delay: 240ms;
}

/* ——— Offer / Bonus ——— */
.offer {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(247, 229, 34, 0.08), transparent 60%),
    var(--color-bg);
}

.offer__grid {
  display: grid;
  gap: var(--space-10);
  justify-items: center;
  text-align: center;
}

@media (min-width: 900px) {
  .offer__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-12);
    text-align: left;
    justify-items: stretch;
  }

  .offer .section-head {
    text-align: left;
    margin-bottom: 0;
    justify-self: end;
    width: min(100%, 22rem);
  }

  .offer .section-head .section__lead {
    margin-inline: 0;
  }

  .offer__list {
    justify-self: start;
  }
}

.offer__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-3) var(--space-5);
  background: var(--color-bg-elevated);
  border: 1px dashed rgba(247, 229, 34, 0.45);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.offer__code-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.offer__list {
  display: grid;
  gap: 0;
  width: min(100%, 28rem);
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.offer__item {
  display: grid;
  /* Sabit sayı sütunu → başlıklar tek dikey hatta */
  grid-template-columns: 7.75rem 1fr;
  column-gap: var(--space-5);
  align-items: center;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border);
}

.offer__item:last-child {
  border-bottom: 0;
}

.offer__value {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  text-align: end;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.offer__item h3 {
  margin: 0 0 var(--space-1);
  font-size: var(--fs-md);
  font-weight: 600;
}

.offer__item p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* ——— Why ——— */
.why {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 100%);
}

.why__grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10) var(--space-8);
  }
}

@media (min-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why__item {
  text-align: center;
}

.why__icon {
  width: 120px;
  height: auto;
  margin: 0 auto var(--space-4);
}

.why__item h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.3;
}

.why__item h3 em {
  font-style: normal;
  color: var(--color-primary);
}

.why__item p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* ——— Feature bands (section images) ——— */
.feature {
  padding: 0;
}

.feature__band {
  position: relative;
  min-height: min(64vh, 560px);
  display: flex;
  flex-direction: column;
  /* Üst/alt eşit nefes — metin ortada, butonlar altta sol/sağ */
  padding-block: clamp(3.25rem, 9vh, 5.5rem);
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  box-sizing: border-box;
}

.feature__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(1.5rem, 4vh, 2.5rem);
  width: 100%;
  flex: 1 1 auto;
}

.feature__band + .feature__band {
  margin-top: 0;
}

.feature__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Oyuncular / konu biraz daha ortada kalsın */
  object-position: center 42%;
}

.feature__media .feature-img--desktop {
  display: none;
}

.feature__media .feature-img--mobile {
  display: block;
}

@media (min-width: 768px) {
  .feature__media .feature-img--desktop {
    display: block;
  }

  .feature__media .feature-img--mobile {
    display: none;
  }
}

.feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 14, 20, 0.28) 0%,
      transparent 28%,
      transparent 72%,
      rgba(8, 14, 20, 0.32) 100%
    ),
    linear-gradient(
      90deg,
      rgba(8, 14, 20, 0.88) 0%,
      rgba(8, 14, 20, 0.55) 45%,
      rgba(8, 14, 20, 0.25) 100%
    );
}

.feature__band--rtl .feature__overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(8, 14, 20, 0.28) 0%,
      transparent 28%,
      transparent 72%,
      rgba(8, 14, 20, 0.32) 100%
    ),
    linear-gradient(
      270deg,
      rgba(8, 14, 20, 0.88) 0%,
      rgba(8, 14, 20, 0.55) 45%,
      rgba(8, 14, 20, 0.25) 100%
    );
}

@media (max-width: 767px) {
  .feature__overlay,
  .feature__band--rtl .feature__overlay {
    background: linear-gradient(to top, rgba(8, 14, 20, 0.94) 25%, rgba(8, 14, 20, 0.45) 100%);
  }
}

.feature__content {
  position: relative;
  z-index: 2;
  grid-row: 1;
  width: min(100%, 32rem);
  max-width: 32rem;
  margin: 0;
  padding: 0;
  justify-self: start;
  align-self: center;
}

.feature__band--rtl .feature__content {
  justify-self: center;
}

@media (min-width: 900px) {
  .feature__band:not(.feature__band--rtl) .feature__content {
    justify-self: start;
  }

  .feature__band--rtl .feature__content {
    justify-self: end;
    text-align: right;
  }
}

.feature__content h2 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.feature__content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-md);
}

/* Tek büyük CTA — metnin karşı tarafında (sol/sağ) */
.feature__actions {
  position: relative;
  z-index: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.feature__actions--start {
  justify-content: flex-start;
}

.feature__actions--end {
  justify-content: flex-end;
}

.btn--feature {
  min-height: 58px;
  padding: 1.05rem 2.35rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  border-radius: 14px;
  min-width: min(100%, 14rem);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn--feature.btn--secondary {
  background: rgba(8, 14, 20, 0.45);
  backdrop-filter: blur(6px);
}

/* ——— Games: Magnetic Carousel (Framer port) ——— */
.games {
  background: var(--color-bg-elevated);
  overflow: visible;
}

.magnetic {
  --m-gap: 10px;
  --m-blur: 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--m-gap);
  width: 100%;
  min-height: 260px;
  padding: var(--space-4) 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.magnetic::-webkit-scrollbar {
  display: none;
}

.magnetic__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.magnetic.is-open .magnetic__backdrop {
  pointer-events: auto;
  cursor: zoom-out;
}

.magnetic__bar {
  flex: none;
  position: relative;
  z-index: 2;
  width: var(--m-w, 100px);
  height: var(--m-h, 280px);
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-surface);
  will-change: width, height, filter, opacity;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  -webkit-tap-highlight-color: transparent;
}

.magnetic__bar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

/* Açıkken story’nin tamamı görünsün (9:16 portre + contain) */
.magnetic__bar.is-open img {
  object-fit: contain;
  object-position: center center;
  background: #0a1219;
}

.magnetic__bar:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.magnetic__bar.is-blurred {
  filter: blur(var(--m-blur));
  opacity: 0.6;
}

.magnetic__bar.is-open {
  z-index: 3;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  background: #0a1219;
}

.magnetic.is-open {
  min-height: 520px;
  align-items: center;
}

@media (min-width: 768px) {
  .magnetic.is-open {
    min-height: 600px;
  }
}

.magnetic.is-animating .magnetic__bar {
  transition:
    width 0.3s ease-in-out,
    height 0.3s ease-in-out,
    filter 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.magnetic__hint {
  margin-top: var(--space-4);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .magnetic {
    --m-gap: 14px;
    min-height: 360px;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .magnetic.is-animating .magnetic__bar {
    transition: none;
  }
}

/* ——— Trust strip ——— */
.trust {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (min-width: 768px) {
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust__item img {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-3);
  object-fit: contain;
}

.trust__item img.trust__seal {
  width: 88px;
  height: auto;
  max-height: 110px;
}

.trust__item h3 {
  margin: 0 0 var(--space-1);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.trust__item p {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ——— Final CTA ——— */
.final-cta {
  padding: var(--space-24) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(247, 229, 34, 0.12), transparent 55%),
    var(--color-bg-soft);
}

.final-cta__brand {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.final-cta__brand span {
  background: linear-gradient(180deg, #ffe566 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta p {
  margin: 0 auto var(--space-8);
  max-width: 28rem;
  color: var(--color-text-muted);
  font-size: var(--fs-md);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.final-cta__telegram {
  display: inline-block;
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.final-cta__telegram:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ——— Footer ——— */
.site-footer {
  padding: var(--space-12) 0 var(--space-8);
  background: #061621;
  border-top: 3px solid var(--color-primary);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__logo img {
  width: 140px;
  height: auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
}

.footer__nav a {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--color-primary);
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.footer__badges img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer__badges img.footer__seal {
  height: 72px;
  width: auto;
}

.footer__age {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.footer__age img {
  width: 36px;
  height: 36px;
}

.footer__legal {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.65;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.footer__copy {
  margin-top: var(--space-6);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(154, 173, 184, 0.7);
}

/* ——— Mobile / responsive polish ——— */
html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.magnetic img {
  height: 100%;
  max-width: none;
}

@media (max-width: 767px) {
  :root {
    --header-h: 60px;
    --fs-brand: clamp(2.5rem, 12vw, 3.75rem);
    --fs-3xl: clamp(1.75rem, 7vw, 2.5rem);
    --space-20: 3.5rem;
    --space-24: 4rem;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .header-actions .btn--ghost {
    display: none;
  }

  .header-actions .btn--haptic {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }

  .hero {
    min-height: min(100svh, 720px);
    align-items: flex-end;
    justify-content: center;
  }

  .hero__shell {
    padding: var(--space-8) 0 calc(var(--space-10) + 3rem);
    gap: 1.1rem;
  }

  .hero__content {
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__feature {
    width: min(180px, 48vw);
  }

  .hero__scroll {
    bottom: 0.5rem;
  }

  .hero__lockup {
    justify-content: center;
  }

  .hero__mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero__wordmark {
    font-size: 1.85rem;
  }

  .hero__headline {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .hero__support {
    font-size: var(--fs-sm);
    max-width: 32ch;
    margin-inline: auto;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }

  .hero__ctas .haptic-wrap,
  .hero__ctas .btn {
    width: 100%;
  }

  .haptic-wrap--lg {
    min-width: 0;
    width: 100%;
  }

  .btn--haptic.btn--lg {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.9rem 1.25rem;
  }

  .section {
    padding: var(--space-12) 0;
  }

  .section__title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .offer__list {
    width: min(100%, 22rem);
  }

  .offer__item {
    grid-template-columns: 6.5rem 1fr;
    column-gap: var(--space-4);
    padding: var(--space-4) 0;
  }

  .offer__value {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  }

  /* Magnetic: yatay kaydır, kartlar okunaklı */
  .magnetic {
    justify-content: flex-start;
    padding: var(--space-3) 0.25rem;
    min-height: 240px;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.5rem;
  }

  .magnetic__bar {
    scroll-snap-align: center;
    border-radius: 14px;
  }

  .magnetic.is-open {
    min-height: min(70svh, 520px);
    justify-content: center;
  }

  .magnetic__hint {
    font-size: 0.75rem;
    padding-inline: 0.5rem;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .why__item {
    text-align: center;
  }

  .feature__band {
    min-height: min(70vh, 520px);
    padding-block: clamp(2.75rem, 8vh, 4rem);
  }

  .feature__content {
    padding: 0;
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
    align-self: end;
    text-align: left;
  }

  .feature__band--rtl .feature__content {
    text-align: left;
  }

  .feature__content h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
  }

  .feature__actions--start,
  .feature__actions--end {
    justify-content: stretch;
  }

  .btn--feature {
    width: 100%;
    max-width: 20rem;
    min-height: 52px;
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  .feature__actions--end .btn--feature {
    margin-left: auto;
  }

  .feature__actions--start .btn--feature {
    margin-right: auto;
  }

  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6) var(--space-4);
  }

  .trust__item img.trust__seal {
    width: 72px;
  }

  .final-cta {
    padding: var(--space-16) 0;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }

  .final-cta__actions .haptic-wrap,
  .final-cta__actions .btn {
    width: 100%;
  }

  .footer__badges {
    gap: var(--space-4);
  }

  .footer__age {
    flex-basis: 100%;
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .trust__grid {
    grid-template-columns: 1fr;
  }

  .header-actions .btn--sm {
    padding: 0.45rem 0.75rem;
  }
}

/* ——— Click Effects (Originkit sniper) ——— */
.click-fx {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: visible;
}

.click-fx__sniper {
  position: absolute;
  width: 0;
  height: 0;
}

.click-fx__arm {
  position: absolute;
  left: 0;
  top: 0;
  background: #f7e522;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.click-fx__arm--n,
.click-fx__arm--s {
  width: 2px;
  height: 18px;
}

.click-fx__arm--e,
.click-fx__arm--w {
  width: 18px;
  height: 2px;
}

.click-fx__ring {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #f7e522;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}

.click-fx__dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 3px;
  background: #f7e522;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.click-fx__sniper.is-on .click-fx__arm--n {
  animation: click-arm-n 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.click-fx__sniper.is-on .click-fx__arm--e {
  animation: click-arm-e 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.click-fx__sniper.is-on .click-fx__arm--s {
  animation: click-arm-s 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.click-fx__sniper.is-on .click-fx__arm--w {
  animation: click-arm-w 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.click-fx__sniper.is-on .click-fx__ring {
  animation: click-ring 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.click-fx__sniper.is-on .click-fx__dot {
  animation: click-dot 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes click-arm-n {
  0% {
    opacity: 1;
    transform: translate(-50%, calc(-50% - 8px));
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 36px));
  }
}
@keyframes click-arm-s {
  0% {
    opacity: 1;
    transform: translate(-50%, calc(-50% + 8px));
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 36px));
  }
}
@keyframes click-arm-e {
  0% {
    opacity: 1;
    transform: translate(calc(-50% + 8px), -50%);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + 36px), -50%);
  }
}
@keyframes click-arm-w {
  0% {
    opacity: 1;
    transform: translate(calc(-50% - 8px), -50%);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% - 36px), -50%);
  }
}
@keyframes click-ring {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.35);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}
@keyframes click-dot {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(
        calc(-50% + var(--dx, 20px)),
        calc(-50% + var(--dy, 0px))
      )
      scale(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .click-fx {
    display: none;
  }
}
