/* ============================================================
   BOOMERANG CASINO — assets/styles.css
   ============================================================ */

/* — Google Fonts — */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --yellow:   #FCE522;
  --green:    #B0F687;
  --dark:     #171717;
  --black:    #000000;
  --white:    #ffffff;
  --grey-1:   #111111;
  --grey-2:   #1a1a1a;
  --grey-3:   #252525;
  --grey-4:   #333333;
  --grey-5:   #666666;

  --font-display: 'Anton', sans-serif;
  --font-body:    'Exo 2', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-btn:  0 4px 20px rgba(252,229,34,.35), 0 2px 8px rgba(0,0,0,.6);
  --shadow-card: 0 4px 24px rgba(0,0,0,.55);
  --shadow-glow: 0 0 24px rgba(176,246,135,.25);

  --container-max: 1200px;
  --container-pad: clamp(16px, 4vw, 40px);

  --header-h: 72px;
  --catfish-h: 68px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  padding-bottom: var(--catfish-h);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* Overflow word protection */
p, h1, h2, h3, h4, li, span, td, th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(.9rem, 2.2vw, 1.05rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover  { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(252,229,34,.55), 0 4px 12px rgba(0,0,0,.7); filter: brightness(1.06); }
.btn--primary:active { transform: translateY(0) scale(.98); box-shadow: var(--shadow-btn); }

.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 0 rgba(176,246,135,0);
}
.btn--ghost:hover  { background: rgba(176,246,135,.1); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(0); }

.btn--large { min-height: 56px; padding: 14px 40px; font-size: clamp(1rem, 2.5vw, 1.2rem); border-radius: var(--radius-lg); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding-block: clamp(56px, 8vw, 100px); }
.section--dark  { background: var(--grey-1); }
.section--card  { background: var(--grey-2); }
.section--alt   { background: var(--grey-3); }

.section-tag {
  display: inline-block;
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid var(--green);
  padding: 3px 10px;
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: clamp(12px, 2vw, 20px);
  color: var(--white);
  letter-spacing: .02em;
}

.section-title span { color: var(--yellow); }
.section-lead {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.72);
  max-width: 680px;
  margin-bottom: clamp(28px, 4vw, 48px);
  line-height: 1.7;
}

/* ============================================================
   MEDIA CARD (image wrapper — safe layout)
   ============================================================ */
.media-card {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--green);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.media-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 40px rgba(0,0,0,.7), var(--shadow-glow); }
.media-card img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(176,246,135,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.site-logo:hover { opacity: .85; }
.site-logo img {
  height: clamp(36px, 6vw, 52px);
  width: auto;
  object-fit: contain;
  object-position: left center;
  max-width: clamp(120px, 28vw, 200px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 2vw, 28px);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }

.nav-link {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-link:hover { color: var(--green); border-bottom-color: var(--green); }

.header-cta { flex-shrink: 0; }
.header-cta .btn { min-height: 40px; padding: 8px 20px; font-size: .85rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(176,246,135,.3);
  border-radius: var(--radius-sm);
  padding: 8px;
  background: transparent;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.97);
  z-index: 899;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  gap: 12px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.3rem;
  padding: 12px 20px;
  width: 100%;
  text-align: center;
}
.mobile-nav .btn { width: 80%; max-width: 320px; margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero-image-wrap {
  width: 100%;
  overflow: hidden;
  max-height: clamp(220px, 40vw, 520px);
  border-bottom: 2px solid rgba(176,246,135,.2);
}
.hero-image-wrap a { display: block; }
.hero-image-wrap img {
  width: 100%;
  height: auto;
  max-height: clamp(220px, 40vw, 520px);
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.hero-image-wrap:hover img { transform: scale(1.02); }

.hero-body {
  padding-block: clamp(36px, 6vw, 72px);
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(252,229,34,.09) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  animation: badgePop .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes badgePop { from { transform: scale(.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.hero-bonus {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: .02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: heroSlide .6s cubic-bezier(.4,0,.2,1) both;
}
.hero-bonus strong { color: var(--yellow); display: block; }
@keyframes heroSlide { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  color: var(--green);
  font-weight: 700;
  margin-bottom: clamp(24px, 3vw, 36px);
  letter-spacing: .06em;
  animation: heroSlide .7s .1s cubic-bezier(.4,0,.2,1) both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: heroSlide .7s .2s cubic-bezier(.4,0,.2,1) both;
}

.hero-disclaimer {
  margin-top: 18px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  animation: heroSlide .7s .35s both;
}

/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.advantage-card {
  background: var(--grey-2);
  border: 1px solid rgba(176,246,135,.18);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.advantage-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-glow); }

.advantage-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.advantage-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--yellow);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.advantage-text { font-size: .93rem; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ============================================================
   BONUS / PROMO
   ============================================================ */
.bonus-hero-card {
  background: linear-gradient(135deg, var(--grey-2) 0%, rgba(252,229,34,.07) 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
  box-shadow: 0 0 60px rgba(252,229,34,.12);
}

.bonus-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  padding: 10px 28px;
  border-radius: var(--radius-md);
  letter-spacing: .02em;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px rgba(252,229,34,.4);
}

.bonus-desc {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 28px;
  line-height: 1.7;
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.bonus-card {
  background: var(--grey-3);
  border: 1px solid rgba(176,246,135,.15);
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.5vw, 28px);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover { border-color: var(--green); transform: translateY(-3px); }

.bonus-card-icon { font-size: 2rem; margin-bottom: 10px; }
.bonus-card-title { font-weight: 800; color: var(--yellow); margin-bottom: 6px; font-size: 1rem; }
.bonus-card-text { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================
   HOW TO START
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  counter-reset: steps;
}

.step-card {
  background: var(--grey-2);
  border: 1px solid rgba(176,246,135,.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  counter-increment: steps;
}
.step-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.step-card::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(252,229,34,.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(252,229,34,.35);
}

.step-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 8px; letter-spacing: .02em; }
.step-text { font-size: .92rem; color: rgba(255,255,255,.68); line-height: 1.65; }

/* ============================================================
   SPORT / CASINO / REVIEW SECTION
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.text-block p {
  font-size: clamp(.93rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 14px;
}
.text-block p:last-child { margin-bottom: 0; }

.sport-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 18px;
}
.sport-pill {
  background: var(--grey-3);
  border: 1px solid rgba(176,246,135,.2);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .04em;
  transition: background var(--transition), border-color var(--transition);
}
.sport-pill:hover { background: rgba(176,246,135,.1); border-color: var(--green); }

/* Casino game grid */
.game-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 18px;
}
.game-pill {
  background: rgba(252,229,34,.08);
  border: 1px solid rgba(252,229,34,.2);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .04em;
  transition: background var(--transition);
}
.game-pill:hover { background: rgba(252,229,34,.18); }

/* Review section */
.review-box {
  background: var(--grey-2);
  border: 1px solid rgba(176,246,135,.15);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.review-stars .star { font-size: 1.4rem; }
.review-score {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  margin-left: 8px;
}

.review-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 24px;
  table-layout: fixed;
}
.review-table td {
  padding: 10px 14px;
  font-size: .92rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.review-table td:first-child { color: rgba(255,255,255,.5); width: 42%; }
.review-table td:last-child { color: var(--white); font-weight: 600; }
.review-table tr:last-child td { border-bottom: none; }

.review-verdict {
  background: rgba(176,246,135,.06);
  border: 1px solid rgba(176,246,135,.25);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 20px;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}
.review-verdict strong { color: var(--green); }

/* ============================================================
   PAYMENTS
   ============================================================ */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 32px;
}

.payment-card {
  background: var(--grey-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.payment-card:hover { border-color: var(--green); transform: translateY(-2px); }
.payment-icon { font-size: 2rem; margin-bottom: 8px; }
.payment-name { font-weight: 700; font-size: .88rem; color: var(--white); }
.payment-speed { font-size: .78rem; color: var(--green); margin-top: 4px; }

.payments-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.payments-info-item {
  background: var(--grey-3);
  border-radius: var(--radius-md);
  padding: 18px;
  border-left: 3px solid var(--yellow);
}
.payments-info-item strong { display: block; color: var(--yellow); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.payments-info-item span { color: rgba(255,255,255,.75); font-size: .93rem; }

/* ============================================================
   SUPPORT
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.support-card {
  background: var(--grey-2);
  border: 1px solid rgba(176,246,135,.12);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.support-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.support-icon { font-size: 2.5rem; margin-bottom: 14px; }
.support-title { font-weight: 800; color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.support-text { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(176,246,135,.25); }
.faq-item.open { border-color: var(--green); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  background: var(--grey-2);
  font-weight: 700;
  font-size: clamp(.9rem, 2vw, 1rem);
  color: var(--white);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--green); color: var(--dark); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: var(--grey-3);
}
.faq-a-inner { padding: 0 22px; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-a-inner { padding: 16px 22px; }
.faq-a p { font-size: .93rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 8px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(252,229,34,.08) 0%, transparent 70%),
              var(--grey-1);
  border-top: 1px solid rgba(252,229,34,.15);
  border-bottom: 1px solid rgba(252,229,34,.15);
}

.final-cta .section-title { font-size: clamp(2rem, 6vw, 3.8rem); }
.final-cta .bonus-badge { margin-bottom: 28px; font-size: clamp(1.1rem, 3vw, 1.8rem); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: clamp(36px, 5vw, 60px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 36px;
}

.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; }

.footer-col h4 { font-weight: 700; color: var(--green); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col li { margin-bottom: 8px; }
.footer-col li a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color var(--transition); }
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-18 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  font-weight: 900;
  font-size: .8rem;
  flex-shrink: 0;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   CATFISH BAR
   ============================================================ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--grey-1);
  border-top: 2px solid var(--yellow);
  padding: 10px var(--container-pad);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
  transition: transform .3s ease;
}
.catfish.hidden { transform: translateY(110%); }

.catfish-text {
  font-weight: 800;
  font-size: clamp(.78rem, 2vw, .92rem);
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.catfish-text span { color: var(--yellow); }

.catfish .btn { min-height: 40px; padding: 8px 20px; font-size: .85rem; flex-shrink: 0; }

.catfish-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.catfish-close:hover { background: rgba(255,255,255,.2); color: var(--white); }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  align-items: center;
  justify-content: center;
  padding: var(--container-pad);
  backdrop-filter: blur(6px);
}
.exit-overlay.visible { display: flex; }

.exit-modal {
  background: var(--grey-1);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(252,229,34,.2);
  position: relative;
  animation: modalIn .35s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes modalIn { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,.18); color: var(--white); }

.exit-emoji { font-size: 3rem; margin-bottom: 12px; }
.exit-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.exit-subtitle { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.exit-bonus { font-family: var(--font-display); font-size: clamp(1.2rem, 3.5vw, 1.6rem); color: var(--yellow); margin-bottom: 24px; letter-spacing: .02em; }
.exit-modal .btn { width: 100%; }
.exit-decline { margin-top: 14px; font-size: .82rem; color: rgba(255,255,255,.35); cursor: pointer; text-decoration: underline; }
.exit-decline:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   ANIMATIONS / SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }

  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .payments-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .payments-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --header-h: 60px; --catfish-h: 80px; }

  .advantages-grid { grid-template-columns: 1fr; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments-info-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .hero-cta-group .btn { width: 100%; }
  .exit-modal .btn--ghost { display: none; }

  .catfish { flex-wrap: nowrap; padding-right: 46px; }
  .catfish-text { font-size: .75rem; }

  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .review-table td { padding: 8px 10px; font-size: .84rem; }
}

/* ============================================================
   RESPONSIVE — SMALL (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .bonus-badge { font-size: 1rem; padding: 8px 14px; }
  .hero-bonus { font-size: 2rem; }
  .btn--large { padding: 12px 20px; }
  .payments-grid { grid-template-columns: 1fr; }
}