/* ============================================================
   TRIUNFO GT — Bespoke Stylesheet
   Palette: Gold #ffc500 · Blue #409eff · Dark #1d2333 · Green #4ff461
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:   #ffc500;
  --gold-dk:#cc9e00;
  --gold-lt:#ffe066;
  --blue:   #409eff;
  --green:  #4ff461;
  --slate:  #1d2333;
  --slate2: #242d42;
  --slate3: #2c3756;
  --slate4: #374264;
  --text:   #e8eaf2;
  --muted:  #8b94b0;
  --white:  #ffffff;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--slate);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

img { display: block; max-width: 100%; height: auto; }

/* --- Critical: Header (inlined below, mirrored here for non-critical styles) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--slate);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,.6);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
.wordmark span { color: var(--white); }

/* Desktop nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.header-nav a {
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--gold);
  background: rgba(255,197,0,.08);
  text-decoration: none;
}

.header-spacer { flex: 1; }

/* Lang switch desktop */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--slate2);
  border-radius: var(--radius);
  padding: 3px;
  flex-shrink: 0;
}
.lang-switch a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  padding: 4px 9px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.lang-switch a:hover { color: var(--gold); }
.lang-switch a.active {
  background: var(--gold);
  color: var(--slate);
}

/* CTA buttons header */
.btn-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: opacity .15s;
  text-decoration: none;
}
.btn-login:hover { opacity: .88; text-decoration: none; }

.btn-login.outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-login.solid {
  background: var(--gold);
  color: var(--slate);
  border: 1.5px solid var(--gold);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav slide-down */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--slate2);
  border-bottom: 2px solid var(--gold);
  padding: 16px 20px;
  gap: 8px;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate3);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }

.mobile-nav .mob-lang {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate3);
}
.mobile-nav .mob-lang a {
  border: none;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: .85rem;
  color: var(--muted);
  background: var(--slate3);
}
.mobile-nav .mob-lang a.active {
  background: var(--gold);
  color: var(--slate);
}

.mobile-nav .mob-ctas {
  display: flex;
  gap: 8px;
  padding-top: 8px;
}
.mobile-nav .mob-ctas .btn-login { flex: 1; justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Gold diagonal slash accent */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg,
    var(--slate) 0%,
    var(--slate) 48%,
    rgba(255,197,0,.07) 48%,
    rgba(255,197,0,.12) 100%);
  z-index: 0;
}

/* Gold stripe top edge */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 72px 20px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,197,0,.12);
  border: 1px solid rgba(255,197,0,.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-headline .gold { color: var(--gold); }
.hero-headline .blue { color: var(--blue); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .03em;
  background: var(--gold);
  color: var(--slate);
  transition: background .15s, transform .12s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,197,0,.3);
}
.btn-primary:hover {
  background: var(--gold-lt);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(64,159,255,.1);
  text-decoration: none;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.stat-item {}
.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-top: 2px;
}

/* Hero right: banner rotator */
.hero-right {
  position: relative;
}

.hero-banners {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  border: 1px solid rgba(255,197,0,.15);
}

.hero-banners img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .5s;
}

.banner-slide { display: none; }
.banner-slide.active { display: block; }

.banner-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.banner-dot.active { background: var(--gold); }

/* Gold trophy glow behind banners */
.hero-glow {
  position: absolute;
  top: -40px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,197,0,.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   FEATURES / VERTICALS BAR
   ============================================================ */
.verticals-bar {
  background: var(--slate2);
  border-bottom: 1px solid var(--slate3);
  padding: 0 20px;
}

.verticals-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.vertical-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
  border-right: 1px solid var(--slate3);
  text-align: center;
  transition: background .15s;
  text-decoration: none;
}
.vertical-item:last-child { border-right: none; }
.vertical-item:hover {
  background: rgba(255,197,0,.05);
  text-decoration: none;
}

.vertical-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}

.vertical-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.vertical-desc {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section {
  padding: 72px 20px;
}
.section-alt { background: var(--slate2); }

.section-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.15;
}

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SPORTS MARKETS BOARD (tabular)
   ============================================================ */
.markets-board {
  background: var(--slate2);
  border: 1px solid var(--slate3);
  border-radius: 12px;
  overflow: hidden;
}

.markets-tabs {
  display: flex;
  gap: 0;
  background: var(--slate3);
  border-bottom: 1px solid var(--slate4);
  overflow-x: auto;
  scrollbar-width: none;
}
.markets-tabs::-webkit-scrollbar { display: none; }

.markets-tab {
  padding: 12px 20px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
  border: none;
  background: none;
}
.markets-tab:hover { color: var(--text); }
.markets-tab.active { color: var(--gold); border-bottom: 3px solid var(--gold); }

.markets-panel { display: none; }
.markets-panel.active { display: block; }

.markets-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.markets-table thead th {
  background: var(--slate3);
  padding: 10px 14px;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  text-align: left;
}
.markets-table thead th.num { text-align: right; }

.markets-table tbody tr {
  border-bottom: 1px solid var(--slate3);
  transition: background .12s;
}
.markets-table tbody tr:last-child { border-bottom: none; }
.markets-table tbody tr:hover { background: rgba(255,197,0,.04); }

.markets-table td {
  padding: 13px 14px;
  font-size: .88rem;
  color: var(--text);
}

.match-teams { font-weight: 600; }
.match-league {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}
.match-time {
  font-size: .78rem;
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}

.odd-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--slate3);
  border: 1px solid var(--slate4);
  cursor: pointer;
  min-width: 52px;
  transition: background .15s, border-color .15s;
  text-align: center;
}
.odd-btn:hover { background: var(--slate4); border-color: var(--gold); }
.odd-val {
  font-size: .92rem;
  font-weight: 800;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.odd-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}

.td-odds { text-align: right; }
.odds-row { display: flex; gap: 4px; justify-content: flex-end; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(79,244,97,.12);
  border: 1px solid rgba(79,244,97,.3);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--green);
  text-transform: uppercase;
}
.live-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

/* ============================================================
   CASINO TILES GRID
   ============================================================ */
.casino-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.chip {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  background: var(--slate2);
  border: 1.5px solid var(--slate3);
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { color: var(--text); border-color: var(--slate4); }
.chip.active {
  background: var(--gold);
  color: var(--slate);
  border-color: var(--gold);
}

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

.game-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--slate2);
  border: 1px solid var(--slate3);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,197,0,.18);
  border-color: rgba(255,197,0,.4);
}

.game-thumb {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

/* Game tile placeholders with brand gradient */
.game-thumb-slots    { background: linear-gradient(135deg, #1d2333 0%, #2c3756 100%); }
.game-thumb-live     { background: linear-gradient(135deg, #1d2333 0%, #1a2d20 100%); }
.game-thumb-table    { background: linear-gradient(135deg, #1d2333 0%, #1e2540 100%); }
.game-thumb-sports   { background: linear-gradient(135deg, #1d2333 0%, #1c2a3a 100%); }
.game-thumb-crash    { background: linear-gradient(135deg, #1d2333 0%, #2a1d33 100%); }

.game-card-body {
  padding: 10px 12px 12px;
}
.game-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
}
.game-provider {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 2px;
}

.game-badge-hot, .game-badge-new, .game-badge-live-c {
  position: absolute;
  top: 8px; left: 8px;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.game-badge-hot  { background: var(--gold); color: var(--slate); }
.game-badge-new  { background: var(--blue); color: var(--white); }
.game-badge-live-c { background: var(--green); color: var(--slate); }

/* ============================================================
   PROMOS / BANNERS STRIP
   ============================================================ */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--slate2);
  border: 1px solid var(--slate3);
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .15s;
}
.promo-card:hover {
  border-color: rgba(255,197,0,.4);
  transform: translateY(-3px);
}

.promo-img-wrap { overflow: hidden; }
.promo-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.promo-card:hover .promo-img-wrap img { transform: scale(1.03); }

.promo-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-tag {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 6px;
}

.promo-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}

.promo-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

/* ============================================================
   PAYMENTS SECTION
   ============================================================ */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.payment-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--slate2);
  border: 1px solid var(--slate3);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  transition: border-color .15s;
}
.payment-pill:hover { border-color: var(--gold); }
.payment-icon { font-size: 1.2rem; }

/* ============================================================
   RESPONSIBLE GAMING BAR
   ============================================================ */
.rg-bar {
  background: var(--slate3);
  padding: 20px;
  border-top: 1px solid var(--slate4);
  border-bottom: 1px solid var(--slate4);
}
.rg-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rg-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--slate);
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.rg-text {
  font-size: .83rem;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}
.rg-text strong { color: var(--text); }

/* ============================================================
   SEO ARTICLE BLOCK
   ============================================================ */
.seo-section {
  padding: 64px 20px 72px;
  background: var(--slate);
}
.seo-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Typography for injected article content */
.seo-article h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}
.seo-article h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.seo-article h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.seo-article p {
  color: var(--text);
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.7;
}
.seo-article a {
  color: var(--blue);
  border-bottom: 1px solid rgba(64,159,255,.3);
}
.seo-article a:hover { border-bottom-color: var(--blue); }

.seo-article ul, .seo-article ol {
  margin: 0 0 16px 20px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
}
.seo-article li { margin-bottom: 6px; }

.seo-article strong { color: var(--white); }
.seo-article em { color: var(--gold-lt); }

/* Responsive tables */
.seo-article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  table-layout: fixed;
  overflow-wrap: anywhere;
}
.seo-article th {
  background: var(--slate2);
  padding: 10px 12px;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  border-bottom: 1px solid var(--slate3);
}
.seo-article td {
  padding: 10px 12px;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid var(--slate3);
}
.seo-article tr:last-child td { border-bottom: none; }
.seo-article tr:nth-child(even) td { background: rgba(255,255,255,.02); }

/* FAQ accordion */
.seo-article .faq-item {
  border-bottom: 1px solid var(--slate3);
}
.seo-article .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.seo-article .faq-q:hover { color: var(--gold); }
.seo-article .faq-q .faq-arrow {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--gold);
  transition: transform .2s;
}
.seo-article .faq-item.open .faq-arrow { transform: rotate(180deg); }
.seo-article .faq-a {
  display: none;
  padding: 0 0 16px 0;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}
.seo-article .faq-item.open .faq-a { display: block; }

/* Breadcrumb */
.breadcrumb {
  padding: 16px 20px;
  background: var(--slate2);
  border-bottom: 1px solid var(--slate3);
}
.breadcrumb-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb span {
  font-size: .78rem;
  color: var(--muted);
}
.breadcrumb a {
  font-size: .78rem;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--slate4); }
.breadcrumb .current { color: var(--gold); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--slate2);
  border-top: 2px solid var(--gold);
  padding: 56px 20px 32px;
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand-logo img { height: 32px; width: auto; }
.footer-tagline {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-col-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .15s;
}
.footer-links a:hover { color: var(--gold); text-decoration: none; }

.footer-divider {
  height: 1px;
  background: var(--slate3);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-copy {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-copy p { margin-bottom: 4px; }

.footer-rg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate3);
  border-radius: 8px;
  padding: 10px 16px;
}
.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.footer-rg-text {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   INNER PAGE HERO (non-index)
   ============================================================ */
.page-hero {
  background: var(--slate2);
  border-bottom: 1px solid var(--slate3);
  padding: 48px 20px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
}
.page-hero-inner {
  max-width: 1220px;
  margin: 0 auto;
}
.page-hero-tag {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.page-hero-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
}
.page-hero-desc {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 8px;
  max-width: 560px;
}

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

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .promo-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  /* Mobile header: hide nav, lang, ctas */
  .header-nav,
  .lang-switch,
  .btn-login {
    display: none;
  }
  .burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 40px;
  }
  .hero-right { order: -1; }
  .hero-glow { display: none; }

  .verticals-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .vertical-item:nth-child(2) { border-right: none; }
  .vertical-item:nth-child(3) { border-right: 1px solid var(--slate3); }

  .promo-strip {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }

  .markets-table th:nth-child(3),
  .markets-table td:nth-child(3) { display: none; }
}

@media (max-width: 640px) {
  .verticals-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats { gap: 20px; }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .seo-article table {
    font-size: .75rem;
  }
  .seo-article th,
  .seo-article td {
    padding: 6px 8px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .promo-img-wrap img { height: 140px; }
}

@media (max-width: 420px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .payments-grid { gap: 8px; }
  .payment-pill { padding: 8px 12px; font-size: .75rem; }
}
