/* ===== TOKENS ===== */
:root {
  --black:     #0a0a0a;
  --dark:      #111118;
  --dark2:     #18181f;
  --dark3:     #1e1e28;
  --red:       #cc0000;
  --red-hot:   #ff1a1a;
  --red-dark:  #990000;
  --gold:      #d4af37;
  --gold-lt:   #e8c84a;
  --cream:     #f0ece0;
  --white:     #ffffff;
  --grey:      #a0a0b0;
  --grey-dark: #4a4a5a;
  --border:    rgba(212,175,55,0.18);
  --radius:    8px;
  --radius-lg: 14px;
  --ff-display: 'Bebas Neue', 'Arial Black', Arial, sans-serif;
  --ff-body:    'Inter', Arial, sans-serif;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --glow-red:   0 0 18px rgba(204,0,0,0.55);
  --glow-gold:  0 0 12px rgba(212,175,55,0.4);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.mt-2 { margin-top: 1.5rem; }

/* ===== TOP BANNER STRIP ===== */
.top-banner-strip {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 200;
  flex-wrap: wrap;
  text-align: center;
}

.strip-text {
  font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.strip-text strong {
  color: var(--gold);
}

.btn-strip {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 6px 18px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-strip:hover { background: var(--gold-lt); transform: scale(1.03); }

/* ===== HEADER ===== */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 37px;
  z-index: 100;
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-svg { height: 38px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: var(--gold); background: rgba(212,175,55,0.08); }

.btn-nav {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-nav:hover { background: var(--red-hot); box-shadow: var(--glow-red); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: background 0.2s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0000 40%, var(--dark) 100%);
  border-bottom: 2px solid var(--red);
  padding: 72px 20px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(204,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(56px, 10vw, 110px);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(204,0,0,0.6), 0 4px 20px rgba(0,0,0,0.8);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--grey);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.offer-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.offer-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.offer-label {
  font-size: 0.72rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.offer-divider {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--red);
}

.hero-payment-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pay-label {
  font-size: 0.78rem;
  color: var(--grey);
  margin-right: 4px;
}

.pay-icon {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-hot) 100%);
  color: var(--white);
  border: none;
  padding: 16px 48px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: var(--glow-red), var(--shadow);
  transition: transform 0.15s, box-shadow 0.2s;
  margin-bottom: 14px;
}

.btn-hero:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 28px rgba(204,0,0,0.75), var(--shadow);
}

.hero-disclaimer {
  font-size: 0.72rem;
  color: var(--grey-dark);
}

/* ===== SECTION SHARED ===== */
section { padding: 72px 0; }

.section-intro {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.75;
}

h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

/* ===== GAMES SECTION ===== */
.games-section { background: var(--dark); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.game-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(204,0,0,0.3);
}

.game-icon { font-size: 2rem; flex-shrink: 0; }

.game-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-info strong { color: var(--white); font-size: 0.92rem; }
.game-info span { color: var(--grey); font-size: 0.75rem; margin-top: 2px; }

.btn-small {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 6px 14px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.btn-small:hover { background: var(--red-hot); }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--black); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.9;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-table caption {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  letter-spacing: 0.05em;
  background: var(--dark3);
}

.info-table th,
.info-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  color: var(--grey);
  font-weight: 500;
  width: 38%;
  background: rgba(255,255,255,0.03);
}

.info-table td { color: var(--cream); }

.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--red-hot);
  box-shadow: var(--glow-red);
}

/* ===== BONUS SECTION ===== */
.bonus-section { background: var(--dark); }

.bonus-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.bonus-step {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
  min-width: 38px;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-body strong { color: var(--white); font-size: 0.9rem; }
.step-body span { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.step-body em { color: var(--grey); font-size: 0.78rem; font-style: normal; }

.bonus-note {
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.9;
}

.bonus-note strong { color: var(--gold); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.promo-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.2s;
}

.promo-card:hover { border-color: rgba(212,175,55,0.4); }

.promo-icon { font-size: 1.8rem; margin-bottom: 10px; }

.promo-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.promo-card p {
  font-size: 0.86rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(90deg, var(--red-dark) 0%, #cc0000 50%, var(--red-dark) 100%);
  padding: 20px;
}

.mid-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.mid-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mid-banner-text strong {
  font-size: 1.05rem;
  color: var(--white);
}

.mid-banner-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.btn-mid-banner {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 12px 28px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-mid-banner:hover { background: var(--gold-lt); transform: scale(1.03); }

/* ===== HOW TO START ===== */
.howto-section { background: var(--black); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.step-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.step-circle {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
  box-shadow: var(--glow-red);
}

.step-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.step-item p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.65;
}

.login-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.login-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.login-card strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.login-card p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ===== GAMES DETAIL ===== */
.games-detail-section { background: var(--dark); }

.games-detail-section > .container > p {
  font-size: 0.97rem;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 720px;
}

.game-cats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cat-block {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cat-icon { font-size: 1.8rem; }

.cat-block h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--white);
}

.cat-block p {
  font-size: 0.92rem;
  color: var(--cream);
  opacity: 0.88;
  margin-bottom: 12px;
  line-height: 1.75;
}

.cat-block p:last-child { margin-bottom: 0; }

/* ===== PAYMENTS ===== */
.payments-section { background: var(--black); }

.payments-section > .container > p {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.88;
  margin-bottom: 24px;
  max-width: 780px;
  line-height: 1.75;
}

.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pay-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pay-table thead tr {
  background: var(--dark3);
}

.pay-table th {
  padding: 12px 16px;
  text-align: left;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.pay-table td {
  padding: 11px 16px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pay-table tbody tr:last-child td { border-bottom: none; }

.pay-table tbody tr:hover td { background: rgba(255,255,255,0.03); }

.pay-note {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.7;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

/* ===== SECURITY ===== */
.security-section { background: var(--dark); }

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.sec-block {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sec-icon { font-size: 2rem; margin-bottom: 12px; display: block; }

.sec-block h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.sec-block p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ===== SUPPORT ===== */
.support-section { background: var(--black); }

.support-section > .container > p {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.88;
  margin-bottom: 16px;
  max-width: 760px;
  line-height: 1.75;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.contact-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-icon { font-size: 2rem; }

.contact-card strong {
  color: var(--white);
  font-size: 1rem;
}

.contact-card p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
}

/* ===== HIGHLIGHTS ===== */
.highlights-section { background: var(--dark); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.highlight-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.15s;
}

.highlight-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.hi-icon { font-size: 1.8rem; }

.highlight-item strong {
  color: var(--white);
  font-size: 0.95rem;
}

.highlight-item p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section { background: var(--black); }

.faq-section > .container > p {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 32px;
  max-width: 680px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
}

.faq-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--gold); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold); }

.faq-q .faq-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-q .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-a { max-height: 400px; }

.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===== CTA BOTTOM ===== */
.cta-bottom { background: var(--dark); padding: 60px 0; }

.cta-box {
  background: linear-gradient(135deg, #1a0000 0%, var(--dark3) 100%);
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  box-shadow: 0 0 40px rgba(204,0,0,0.15);
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--grey);
  font-size: 0.92rem;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-offer {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.btn-cta-big {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-hot) 100%);
  color: var(--white);
  border: none;
  padding: 18px 56px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: var(--glow-red), var(--shadow);
  transition: transform 0.15s, box-shadow 0.2s;
  margin-bottom: 14px;
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
}

.btn-cta-big:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(204,0,0,0.8), var(--shadow);
}

.cta-disclaimer {
  font-size: 0.72rem;
  color: var(--grey-dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 52px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-svg { height: 34px; width: auto; margin-bottom: 14px; display: block; }

.footer-desc {
  font-size: 0.82rem;
  color: var(--grey-dark);
  line-height: 1.6;
}

.footer-heading {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 0.84rem;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--gold); }

.footer-link-text {
  font-size: 0.82rem;
  color: var(--grey-dark);
}

.footer-small {
  font-size: 0.8rem;
  color: var(--grey-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
  text-align: center;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: var(--grey-dark);
  margin-bottom: 6px;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(100,100,120,0.7);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .site-header { top: 0; }

  .top-banner-strip { position: static; }

  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 50;
  }

  .main-nav.open { display: flex; }

  .nav-link {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .btn-nav {
    margin: 12px 0 0;
    width: 100%;
    text-align: center;
  }

  .burger { display: flex; }

  .hero { padding: 48px 20px 40px; }

  .hero-offer { gap: 8px; }

  .offer-box { padding: 10px 16px; min-width: 80px; }

  section { padding: 48px 0; }

  .steps-row,
  .bonus-steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-box { padding: 36px 20px; }

  .mid-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .btn-mid-banner { width: 100%; }
}

@media (max-width: 480px) {
  .steps-row,
  .bonus-steps {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 72px; }

  .promo-grid,
  .security-grid,
  .highlights-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .pay-table { font-size: 0.8rem; }

  .games-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL SNAP (optional UX polish) ===== */
@media (prefers-reduced-motion: no-preference) {
  .highlight-item,
  .game-card,
  .sec-block,
  .promo-card {
    transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s;
  }
}
