/* ============================================================
   SpinEmpire Australia 11 — Design System
   ============================================================ */

:root {
  --bg-base:        #060e1d;
  --bg-raised:      #0b1829;
  --bg-card:        #0f1f3a;
  --bg-card-hover:  #132445;
  --border:         rgba(212,175,83,.14);
  --border-mid:     rgba(212,175,83,.26);
  --border-strong:  rgba(212,175,83,.5);
  --gold:           #d4af53;
  --gold-bright:    #f0ce6e;
  --gold-glow:      rgba(212,175,83,.18);
  --green:          #2ec97c;
  --green-bg:       rgba(46,201,124,.1);
  --red-soft:       rgba(240,106,106,.12);
  --text-primary:   #eef2f8;
  --text-secondary: #aabbd4;
  --text-muted:     #607a9e;
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --shadow-card:    0 8px 32px rgba(0,0,0,.45);
  --shadow-gold:    0 0 40px rgba(212,175,83,.1);
  --max-w:          1160px;
  --tr:             .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--gold-bright); }
ul { list-style: none; }

/* ── Wrapper ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--tr);
  text-decoration: none;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, #d4af53, #f0ce6e);
  color: #060e1d;
  box-shadow: 0 4px 20px rgba(212,175,83,.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,83,.5);
  color: #060e1d;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--border-mid);
  color: var(--text-primary);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.btn--lg { padding: 17px 36px; font-size: 17px; border-radius: var(--radius-lg); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

/* ── Section label ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Section headings ── */
.sec-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.sec-title span { color: var(--gold); }

.sec-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,14,29,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
.logo-text span { color: var(--gold); }
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--tr);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
  background: var(--gold-glow);
}

.header-cta { margin-left: 8px; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--tr);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  background: var(--gold-glow);
  border-left-color: var(--gold);
}
.mobile-nav .btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero picture { display: block; height: 100%; }
.hero picture img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,14,29,.88) 0%, rgba(6,14,29,.6) 55%, rgba(6,14,29,.05) 100%);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-overlay > * { pointer-events: auto; }
.hero-content {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212,175,83,.15);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  max-width: 640px;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: rgba(238,242,248,.8);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  font-weight: 500;
}

/* ── Sections ── */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-raised); }
.section--card-bg {
  background: var(--bg-raised);
  position: relative;
}
.section--card-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--tr);
}
.card:hover {
  border-color: var(--border-mid);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-glow);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Feature grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-grid--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .feature-grid--2col { grid-template-columns: 1fr; } }

/* ── Bonus table ── */
.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.bonus-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.bonus-table td {
  padding: 16px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(212,175,83,.07);
}
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.bonus-table td:first-child { font-weight: 700; color: var(--text-primary); }
.bonus-table .highlight { color: var(--gold); font-weight: 700; }

/* ── Stage cards (bonuses page) ── */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .stage-grid { grid-template-columns: 1fr; } }

.stage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--tr);
}
.stage-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.stage-card__head {
  padding: 20px 24px 16px;
  background: linear-gradient(135deg, rgba(212,175,83,.1) 0%, transparent 80%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.stage-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #060e1d;
}
.stage-card__head-info { flex: 1; }
.stage-card__head-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.stage-card__head-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.stage-card__body { padding: 20px 24px 24px; }

.stage-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.stage-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(212,175,83,.07);
  font-size: 13px;
}
.stage-stat-row:last-child { border-bottom: none; }
.stage-stat-row:nth-child(odd) { background: rgba(255,255,255,.02); }
.stage-stat-row span:first-child { color: var(--text-muted); font-weight: 500; }
.stage-stat-row span:last-child { font-weight: 700; color: var(--text-primary); }
.stage-stat-row .val-gold { color: var(--gold); }
.stage-stat-row .val-green { color: var(--green); }

.stage-terms {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Global CTA hidden ── */
[data-bonus="cta_url"] { display: none !important; }

/* ── Info blocks ── */
.info-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
}
.info-block h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.info-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 10px;
}
.info-block p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}
.info-block ul.styled-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.info-block ul.styled-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.info-block ul.styled-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 9px;
}

/* ── Two-column layout ── */
.two-col {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.two-col__main { flex: 1 1 0; min-width: 0; }
.two-col__aside { width: 320px; min-width: 280px; }
@media (max-width: 860px) {
  .two-col { flex-direction: column; }
  .two-col__aside { width: 100%; }
}

/* ── Sidebar cards ── */
.aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  position: sticky;
  top: 80px;
}
.aside-card__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aside-card__title::before {
  content: '';
  display: block;
  width: 3px;
  height: 16px;
  background: var(--gold);
  border-radius: 2px;
}
.aside-bonus-total {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(212,175,83,.1), transparent);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.aside-bonus-total strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.aside-bonus-total span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.aside-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.aside-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.aside-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.aside-list-item span:first-child { color: var(--text-muted); }
.aside-list-item span:last-child { font-weight: 700; color: var(--text-primary); }

/* ── Mobile feature list ── */
.mobile-feat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.mobile-feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mobile-feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-feat-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mobile-feat-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Step list ── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
  margin: 24px 0;
}
.step-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: steps;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #060e1d;
  line-height: 1;
}
.step-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.step-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Providers ── */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.provider-logo {
  height: 40px;
  object-fit: contain;
  filter: brightness(.7) grayscale(.3);
  transition: all var(--tr);
  border-radius: var(--radius-sm);
}
.provider-logo:hover { filter: brightness(1) grayscale(0); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr), background var(--tr);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-chevron svg { color: #060e1d; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(212,175,83,.12) 0%, rgba(212,175,83,.05) 100%);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.cta-banner p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .age-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ── Footer logos ── */
.foot-logos {
  padding: 40px 0 32px;
  border-top: 1px solid var(--border);
}
.foot-logos-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.foot-logos-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}
.foot-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.foot-logo-link {
  opacity: .4;
  transition: opacity var(--tr);
  display: flex;
  align-items: center;
}
.foot-logo-link:hover { opacity: .8; }
.foot-logo-link img,
.foot-logo-link svg {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1 1 220px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col { flex: 1 1 160px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--tr);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--bg-card);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  color: var(--text-muted);
}

/* ── Alert / Note block ── */
.note-block {
  background: rgba(46,201,124,.08);
  border: 1px solid rgba(46,201,124,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.note-block--warn {
  background: rgba(240,180,40,.07);
  border-color: rgba(240,180,40,.2);
}

/* ── Games Catalog ── */
.games-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.games-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--tr);
}
.games-tab:hover { border-color: var(--border-mid); color: var(--text-secondary); }
.games-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-color: transparent;
  color: #060e1d;
}

.games-category { margin-bottom: 36px; }
.games-category:last-child { margin-bottom: 0; }
.games-category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.games-category-label span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.games-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.games-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.games-scroll::-webkit-scrollbar { height: 4px; }
.games-scroll::-webkit-scrollbar-track { background: transparent; }
.games-scroll::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 4px; }

.game-thumb {
  position: relative;
  min-width: 150px;
  width: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--tr);
  cursor: pointer;
  flex-shrink: 0;
}
.game-thumb:hover { border-color: var(--border-mid); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.5); }
.game-thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.game-thumb__info {
  padding: 8px 10px;
}
.game-thumb__name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-thumb__provider {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}
.game-thumb__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.badge--bonus {
  background: rgba(212,175,83,.85);
  color: #060e1d;
}
.badge--hot {
  background: rgba(240,90,50,.85);
  color: #fff;
}
.badge--jackpot {
  background: rgba(46,201,124,.85);
  color: #060e1d;
}
.badge--live {
  background: rgba(80,130,240,.85);
  color: #fff;
}
.badge--instant {
  background: rgba(180,80,240,.85);
  color: #fff;
}

.game-thumb__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,14,29,.9) 100%);
  opacity: 0;
  transition: opacity var(--tr);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}
.game-thumb:hover .game-thumb__overlay { opacity: 1; }
.game-thumb__play {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid for wider viewport */
.games-grid-static {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.games-grid-static .game-thumb { min-width: unset; width: 100%; }

.view-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: all var(--tr);
}
.view-all-link:hover { color: var(--gold-bright); gap: 14px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .site-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .hero-content { padding: 28px 20px; }
  .hero picture img { min-height: 520px; object-position: 70% top; }
  .hero-overlay { background: linear-gradient(180deg, rgba(6,14,29,.75) 0%, rgba(6,14,29,.85) 100%); }
  .info-block { padding: 22px 20px; }
  .cta-banner { padding: 36px 24px; }
  .footer-top { gap: 28px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 22px; }
}
