/* =============================================
   SPINARA CASINO – Main Stylesheet
   ============================================= */

:root {
  --green-primary: #2ecc40;
  --green-dark:    #1a8a28;
  --green-glow:    #00ff44;
  --green-light:   #a8ffb8;
  --gold:          #f0c040;
  --gold-dark:     #c89a10;
  --bg-dark:       #050d07;
  --bg-card:       #0c1a0e;
  --bg-card2:      #0f2212;
  --border-green:  rgba(46,204,64,.25);
  --text-main:     #e8f5ea;
  --text-muted:    #7da87f;
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    .3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-glow); }
ul, ol { padding-left: 1.4rem; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }

/* ============================================================
   HEADER / NAVBAR
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5,13,7,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-green);
  padding: 0 2rem;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap img { height: 52px; width: auto; }
.main-nav { display: flex; gap: .1rem; }
.main-nav a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .45rem .65rem;
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(46,204,64,.12);
  color: var(--green-primary);
}
.header-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #000 !important;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 0 18px rgba(46,204,64,.45);
  transition: box-shadow var(--transition), transform var(--transition);
}
.header-cta:hover {
  box-shadow: 0 0 30px rgba(46,204,64,.75);
  transform: translateY(-1px);
}
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 26px; height: 2px; background: var(--green-primary); border-radius: 2px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,204,64,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,200,50,.1) 0%, transparent 60%),
    var(--bg-dark);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(46,204,64,.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(46,204,64,.04) 60px);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-logo { width: 100%; max-width: 780px; height: auto; margin: 0 auto 2rem; border-radius: 16px; filter: drop-shadow(0 0 40px rgba(46,204,64,.5)); object-fit: cover; }
.hero h1 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(46,204,64,.25);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.4rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center; margin-bottom: 2.4rem;
}
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(46,204,64,.1);
  border: 1px solid var(--border-green);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-primary);
}
.badge .icon { font-size: 1rem; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(46,204,64,.5), 0 4px 20px rgba(0,0,0,.4);
  transition: box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(46,204,64,.8), 0 4px 20px rgba(0,0,0,.5);
  transform: translateY(-2px);
  color: #000;
}
.btn-secondary {
  display: inline-block;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  padding: .75rem 2rem;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: rgba(46,204,64,.15); color: var(--green-glow); }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SECTIONS COMMON
============================================================ */
.section {
  padding: 5rem 1.5rem;
}
.section-alt { background: rgba(12,26,14,.6); }
.container { max-width: 1180px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: rgba(46,204,64,.1);
  border: 1px solid var(--border-green);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: .75rem;
  color: #fff;
}
.section-title span { color: var(--green-primary); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ============================================================
   BANNER / PROMO STRIPS
============================================================ */
.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0c2f10 0%, #0a1e0c 50%, #061208 100%);
  border: 1px solid rgba(46,204,64,.3);
  padding: 2.5rem 2rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 0 40px rgba(46,204,64,.12);
}
.promo-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-primary), var(--gold), var(--green-primary), transparent);
}
.promo-banner .pb-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(46,204,64,.6));
}
.promo-banner .pb-text h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--gold);
  margin-bottom: .3rem;
}
.promo-banner .pb-text p { color: var(--text-muted); font-size: .95rem; }
.promo-banner .pb-cta { margin-left: auto; flex-shrink: 0; }

.promo-banner-gold {
  background: linear-gradient(135deg, #1a1200 0%, #0d0e00 100%);
  border-color: rgba(240,192,64,.35);
  box-shadow: 0 0 40px rgba(240,192,64,.1);
}
.promo-banner-gold::before {
  background: linear-gradient(90deg, transparent, var(--gold), var(--green-primary), var(--gold), transparent);
}
.promo-banner-gold .pb-text h3 { color: var(--green-primary); }

/* ============================================================
   CARDS GRID
============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(46,204,64,.15);
  border-color: rgba(46,204,64,.5);
}
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.card p { font-size: .88rem; color: var(--text-muted); }

/* ============================================================
   TABLE
============================================================ */
.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-green);
  margin-top: 2rem;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.info-table thead th {
  background: rgba(46,204,64,.15);
  color: var(--green-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .85rem 1.2rem;
  text-align: left;
  white-space: nowrap;
}
.info-table tbody tr {
  border-bottom: 1px solid rgba(46,204,64,.08);
  transition: background var(--transition);
}
.info-table tbody tr:hover { background: rgba(46,204,64,.05); }
.info-table tbody td {
  padding: .75rem 1.2rem;
  color: var(--text-main);
}
.info-table tbody td:first-child { color: var(--text-muted); font-weight: 600; }
.td-green { color: var(--green-primary) !important; font-weight: 600; }
.td-gold  { color: var(--gold) !important; font-weight: 600; }

/* ============================================================
   GAME CARDS
============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card2);
  border: 1px solid var(--border-green);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(46,204,64,.25); }
.game-card-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  font-size: 2.8rem;
}
.game-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  padding: .6rem .75rem .5rem;
  font-size: .78rem; font-weight: 700; color: #fff;
}
.game-badge {
  position: absolute; top: .5rem; right: .5rem;
  background: var(--gold);
  color: #000;
  font-size: .65rem; font-weight: 800;
  padding: .2rem .5rem;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ============================================================
   STEPS / HOW-TO
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}
.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.step-item::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 4rem; font-weight: 900;
  color: rgba(46,204,64,.07);
  line-height: 1;
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; color: #000;
  margin-bottom: 1rem;
}
.step-item h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.step-item p  { font-size: .86rem; color: var(--text-muted); }

/* ============================================================
   PAYMENTS GRID
============================================================ */
.payments-grid {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
}
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; font-weight: 600;
  transition: border-color var(--transition), background var(--transition);
}
.payment-item:hover {
  border-color: rgba(46,204,64,.5);
  background: rgba(46,204,64,.06);
}
.payment-item .p-icon { font-size: 1.4rem; }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(46,204,64,.05); }
.faq-q .faq-arrow {
  font-size: 1.1rem;
  color: var(--green-primary);
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 1.4rem;
  font-size: .9rem; color: var(--text-muted);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.4rem 1.2rem; }

/* ============================================================
   BONUS SCREENSHOT BANNER
============================================================ */
.bonus-screenshot-wrap {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46,204,64,.3);
  box-shadow: 0 0 40px rgba(46,204,64,.15);
}
.bonus-screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.bonus-screenshot-wrap:hover .bonus-screenshot {
  transform: scale(1.015);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(46,204,64,.15); }
.bonus-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-primary), var(--gold));
}
.bonus-card.gold-border::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--green-primary));
}
.bonus-tag {
  display: inline-block;
  background: rgba(240,192,64,.15);
  color: var(--gold);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .7rem; border-radius: 50px;
  margin-bottom: .9rem;
}
.bonus-amount {
  font-size: 1.8rem; font-weight: 900;
  color: var(--green-primary);
  margin-bottom: .4rem;
  line-height: 1;
}
.bonus-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.bonus-card p { font-size: .85rem; color: var(--text-muted); }
.bonus-ul { list-style: none; padding: 0; margin-top: .75rem; }
.bonus-ul li {
  font-size: .83rem; color: var(--text-muted);
  padding: .2rem 0;
  display: flex; align-items: flex-start; gap: .4rem;
}
.bonus-ul li::before { content: '✓'; color: var(--green-primary); flex-shrink: 0; }

/* ============================================================
   RESPONSIBLE GAMBLING
============================================================ */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}
.rg-card {
  background: rgba(12,26,14,.8);
  border: 1px solid rgba(46,204,64,.15);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.rg-card .rg-icon { font-size: 2rem; margin-bottom: .75rem; }
.rg-card h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.rg-card p  { font-size: .84rem; color: var(--text-muted); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #030a04;
  border-top: 1px solid var(--border-green);
  padding: 4rem 1.5rem 2rem;
}
.footer-top {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-green);
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: .83rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--green-primary); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .84rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--green-primary); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 2px solid var(--green-primary);
  border-radius: 50%;
  font-size: .72rem; font-weight: 800;
  color: var(--green-primary);
}
.footer-logos { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.footer-logos .fl-item {
  background: rgba(46,204,64,.08);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  padding: .35rem .8rem;
  font-size: .75rem; font-weight: 600; color: var(--text-muted);
}

/* ============================================================
   UTILITY
============================================================ */
.text-green  { color: var(--green-primary); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.fw-700 { font-weight: 700; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.ul-green { list-style: none; padding: 0; }
.ul-green li {
  padding: .35rem 0;
  color: var(--text-muted);
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .92rem;
}
.ul-green li::before { content: '▸'; color: var(--green-primary); flex-shrink: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   MOBILE NAV OVERLAY
============================================================ */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(5,13,7,.98);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-main);
}
.mobile-nav a:hover { color: var(--green-primary); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.8rem; cursor: pointer; color: var(--green-primary);
}

/* ============================================================
   RESPONSIVE — ПОЛНАЯ МОБИЛЬНАЯ ОПТИМИЗАЦИЯ
============================================================ */

/* ---- Tablet 1024px ---- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .rg-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile 768px ---- */
@media (max-width: 768px) {
  /* Header */
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-cta { display: none; }
  .site-header { padding: 0 1rem; }
  .header-inner { height: 60px; }
  .logo-wrap img { height: 40px; }

  /* Hero */
  .hero { min-height: auto; padding: 3rem 1rem 2.5rem; }
  .hero-logo { max-width: 100%; border-radius: 12px; }
  .hero h1 { font-size: 1.6rem; margin-bottom: 1rem; }
  .hero-sub { font-size: .92rem; margin-bottom: 1.5rem; }
  .hero-badges { gap: .5rem; }
  .badge { font-size: .72rem; padding: .28rem .7rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: .75rem; }
  .btn-primary { width: 100%; max-width: 320px; text-align: center; padding: .9rem 1.5rem; }
  .btn-secondary { width: 100%; max-width: 320px; text-align: center; }

  /* Sections */
  .section { padding: 2.5rem 1rem; }
  .section-title { font-size: 1.4rem; }
  .section-desc { font-size: .9rem; }

  /* Grids → 1 col */
  .cards-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .payments-grid { gap: .6rem; }
  .payment-item { padding: .6rem 1rem; font-size: .82rem; }

  /* Promo Banner */
  .promo-banner { flex-direction: column; text-align: center; padding: 1.75rem 1rem; gap: 1rem; }
  .promo-banner .pb-cta { margin: 0; width: 100%; }
  .promo-banner .pb-cta .btn-primary { width: 100%; }
  .promo-banner .pb-text h3 { font-size: 1.1rem; }
  .promo-banner .pb-icon { font-size: 2.5rem; }

  /* Tables → horizontal scroll */
  .info-table-wrap { margin-top: 1.25rem; }
  .info-table { font-size: .8rem; }
  .info-table thead th { padding: .65rem .8rem; font-size: .72rem; }
  .info-table tbody td { padding: .6rem .8rem; }

  /* Bonus screenshot */
  .bonus-screenshot-wrap { border-radius: 10px; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
  }
  .footer-logos { justify-content: center; }

  /* Two-col */
  .two-col { grid-template-columns: 1fr; gap: 1.25rem; }

  /* FAQ */
  .faq-q { font-size: .88rem; padding: 1rem 1.1rem; }

  /* ul two-col → single */
  .ul-green[style*="columns:2"] { columns: 1 !important; }
}

/* ---- Small Mobile 480px ---- */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.35rem; }
  .hero-logo { border-radius: 8px; }
  .section { padding: 2rem .85rem; }
  .section-title { font-size: 1.2rem; }

  /* Game cards 2 col */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .game-card-inner { font-size: 2rem; }
  .game-card-label { font-size: .7rem; padding: .4rem .5rem .35rem; }

  /* Bonus card */
  .bonus-amount { font-size: 1.4rem; }
  .bonus-card { padding: 1.25rem 1rem; }

  /* Steps */
  .step-item { padding: 1.25rem 1rem; }

  /* Header */
  .header-inner { height: 54px; }
  .logo-wrap img { height: 34px; }

  /* Promo banner */
  .promo-banner { padding: 1.25rem .85rem; }
  .promo-banner .pb-text h3 { font-size: 1rem; }

  /* Table font */
  .info-table { font-size: .74rem; }
  .info-table thead th { padding: .5rem .6rem; }
  .info-table tbody td { padding: .5rem .6rem; }

  /* Footer */
  .footer-logos { gap: .4rem; }
  .footer-logos .fl-item { font-size: .68rem; padding: .28rem .55rem; }
  .footer-bottom p { font-size: .72rem; }

  /* Mobile nav font */
  .mobile-nav a { font-size: 1.05rem; }
  .mobile-nav { gap: 1.1rem; }
}


/* ============================================================
   GLOW ANIMATION
============================================================ */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(46,204,64,.35); }
  50%       { box-shadow: 0 0 45px rgba(46,204,64,.7); }
}
.glow-pulse { animation: glowPulse 2.5s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-anim { animation: float 3s ease-in-out infinite; }

/* Отключаем тяжёлые анимации на мобилке */
@media (max-width: 768px) {
  .float-anim { animation: none; }
  .glow-pulse { animation: none; box-shadow: 0 0 20px rgba(46,204,64,.4); }
}

/* ============================================================
   HERO RATING STARS
============================================================ */
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: .6rem 0 1rem;
}
.hero-rating .stars {
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-shadow: 0 0 8px rgba(240,192,64,.6);
}
.hero-rating .rating-text {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   HERO COUNTDOWN TIMER
============================================================ */
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.2rem 0 1.5rem;
  padding: .85rem 1.6rem;
  background: rgba(240,192,64,.08);
  border: 1px solid rgba(240,192,64,.3);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.cd-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.cd-timer {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.8rem;
  background: rgba(5,13,7,.7);
  border: 1px solid rgba(240,192,64,.25);
  border-radius: 8px;
  padding: .3rem .5rem .15rem;
}
.cd-block span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-block small {
  font-size: .55rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cd-sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}

/* ============================================================
   STICKY MOBILE CTA BAR
============================================================ */
.sticky-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5,13,7,.97);
    border-top: 1px solid var(--border-green);
    padding: .7rem 1rem .9rem;
    backdrop-filter: blur(12px);
  }
  .sticky-cta-bar .scb-text {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.3;
    flex: 1;
  }
  .sticky-cta-bar .scb-text strong {
    display: block;
    color: var(--gold);
    font-size: .85rem;
  }
  .sticky-cta-bar .scb-btn {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    padding: .6rem 1.1rem;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 0 14px rgba(46,204,64,.4);
    text-decoration: none;
    flex-shrink: 0;
  }
  /* extra bottom padding so footer not hidden behind bar */
  .site-footer { padding-bottom: 5rem; }

  /* countdown on mobile */
  .hero-countdown { gap: .5rem; padding: .65rem .9rem; }
  .cd-block span { font-size: 1.15rem; }
  .hero-countdown .cd-label { font-size: .75rem; width: 100%; text-align: center; }
}
