@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a07c10;
  --bg-dark: #0a0a0f;
  --bg-card: #12121c;
  --bg-card2: #1a1a2a;
  --red: #e03030;
  --green: #22c55e;
  --text: #f0eee8;
  --text-muted: #9a9890;
  --border: rgba(212, 175, 55, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── BACKGROUND ─── */
.site-bg {
  position: fixed;
  inset: 0;
  background: url('../bg.webp') center/cover no-repeat;
  opacity: .18;
  z-index: 0;
  pointer-events: none;
}

.wrap { position: relative; z-index: 1; }

/* ─── HEADER ─── */
header {
  background: linear-gradient(180deg, rgba(0,0,0,.95) 0%, rgba(10,10,15,.85) 100%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo a { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 48px; filter: drop-shadow(0 0 8px rgba(212,175,55,.6)); }
.logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(212,175,55,.5);
}

nav { flex: 1; display: flex; align-items: center; gap: 4px; }

nav a {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(212,175,55,.1);
}

.header-actions { display: flex; gap: 10px; margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .5px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  box-shadow: 0 4px 20px rgba(212,175,55,.4);
}

/* ─── TICKER ─── */
.ticker-bar {
  background: linear-gradient(90deg, #0f0f18, #16162a, #0f0f18);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}
.ticker-item .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: #000;
  flex-shrink: 0;
}
.ticker-item .win-name { color: var(--text-muted); }
.ticker-item .win-game { color: var(--text); font-weight: 600; }
.ticker-item .win-amount { color: var(--gold); font-weight: 700; font-family: 'Oswald', sans-serif; font-size: .95rem; }

/* ─── HERO ─── */
.hero {
  padding: 70px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.hero-text h1 span {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212,175,55,.5);
}
.hero-text p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta .btn { font-size: 1rem; padding: 14px 28px; }

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  flex: 1;
}
.hero-stat .num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat .lbl { font-size: .75rem; color: var(--text-muted); margin-top: 4px; }

.hero-visual {
  display: flex;
  justify-content: center;
}
.bonus-card {
  background: linear-gradient(135deg, #1c1c30, #12122a);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(212,175,55,.08);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,175,55,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.bonus-card .badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100%{box-shadow:0 0 0 0 rgba(224,48,48,.4)} 50%{box-shadow:0 0 0 6px rgba(224,48,48,0)} }
.bonus-card .amount {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212,175,55,.5);
  line-height: 1;
}
.bonus-card .amount span { font-size: 1.6rem; }
.bonus-card .desc { color: var(--text-muted); font-size: .9rem; margin-top: 8px; }
.bonus-card .sub { color: var(--text); font-size: .85rem; margin-top: 4px; font-weight: 600; }
.bonus-card .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ─── SECTION ─── */
section {
  padding: 60px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
}
.section-head h2 span { color: var(--gold); }
.section-head a {
  font-size: .85rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.section-head a:hover { border-color: var(--gold); }

/* ─── GAME GRID ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,175,55,.18);
  border-color: var(--gold);
}
.game-thumb {
  position: relative;
  padding-top: 72%;
  background: linear-gradient(135deg, #1a1a30, #0d0d1e);
  overflow: hidden;
}
.game-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg-card2), #111128);
}
.game-thumb .rtp-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,.75);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .65rem;
  font-family: 'Oswald', sans-serif;
  padding: 2px 7px;
  border-radius: 4px;
}
.game-thumb .hot-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-family: 'Oswald', sans-serif;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: .5px;
}
.game-info { padding: 12px; }
.game-info .game-title {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-info .game-provider { font-size: .75rem; color: var(--text-muted); margin-top: 3px; }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay .play-btn {
  background: var(--gold);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 24px;
  border-radius: 8px;
  letter-spacing: .5px;
}

/* ─── LIVE FEED ─── */
.win-feed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
}
.win-feed-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,.6)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0)} }
.win-feed-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.win-feed-list::-webkit-scrollbar { width: 4px; }
.win-feed-list::-webkit-scrollbar-track { background: transparent; }
.win-feed-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.win-feed-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  animation: fadeInRow .4s ease;
}
@keyframes fadeInRow { from{opacity:0;transform:translateX(-10px)} to{opacity:1;transform:translateX(0)} }
.win-feed-row .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a1a6e, #5a2ae0);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.win-feed-row .info { flex: 1; min-width: 0; }
.win-feed-row .info .nm { font-size: .82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-feed-row .info .gm { font-size: .75rem; color: var(--text-muted); }
.win-feed-row .amt { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; color: var(--green); white-space: nowrap; }
.win-feed-row .amt.big { color: var(--gold); }

/* ─── PROMO CARDS ─── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.promo-card {
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,.4); }
.promo-card.gold-card { background: linear-gradient(135deg, #1c1408, #2e2010, #1c1408); border-color: var(--gold-dark); }
.promo-card.purple-card { background: linear-gradient(135deg, #130d24, #1f1540, #130d24); border-color: #5a2ae0; }
.promo-card.blue-card { background: linear-gradient(135deg, #080e24, #0d1840, #080e24); border-color: #2a5ae0; }
.promo-card .pc-label {
  font-size: .72rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.promo-card .pc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.promo-card.gold-card .pc-title { color: var(--gold); }
.promo-card .pc-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.promo-card .pc-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap .2s;
}
.promo-card:hover .pc-cta { gap: 10px; }
.promo-card .pc-gfx {
  position: absolute;
  right: -10px; bottom: -10px;
  font-size: 5rem;
  opacity: .15;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 48px 24px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); margin-top: 8px; font-size: 1rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { opacity: .5; }

/* ─── FILTERS ─── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-chip {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: .2s;
}
.filter-chip:hover, .filter-chip.active {
  background: rgba(212,175,55,.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── LIVE TABLE GRID ─── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.live-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(212,175,55,.15); border-color: var(--gold); }
.live-thumb {
  position: relative;
  padding-top: 60%;
  background: linear-gradient(135deg, #0d0d2a, #1a1040);
  display: flex;
  align-items: center;
  justify-content: center;
}
.live-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.live-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-family: 'Oswald', sans-serif;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
  display: flex; align-items: center; gap: 5px;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1s infinite;
}
.live-players {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,.6);
  color: var(--text-muted);
  font-size: .7rem;
  padding: 3px 8px;
  border-radius: 4px;
}
.live-info { padding: 14px; }
.live-info .live-title { font-weight: 700; font-size: .9rem; }
.live-info .live-prov { font-size: .75rem; color: var(--text-muted); margin-top: 3px; }
.live-info .live-limits { font-size: .75rem; color: var(--gold); margin-top: 6px; font-family: 'Oswald', sans-serif; }

/* ─── BONUS CARDS ─── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.bonus-promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.bonus-promo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(212,175,55,.15); }
.bpc-head {
  padding: 24px;
  background: linear-gradient(135deg, #1a1408, #2a1e0e);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bpc-head::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(212,175,55,.2) 0%, transparent 70%);
}
.bpc-icon { font-size: 2.5rem; margin-bottom: 12px; }
.bpc-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.bpc-name { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }
.bpc-body { padding: 20px 24px; }
.bpc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.bpc-features li { font-size: .85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.bpc-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.bpc-btn { display: block; text-align: center; }

/* ─── FOOTER ─── */
footer {
  background: #06060a;
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 40px; opacity: .8; }
.footer-brand p { font-size: .82rem; color: var(--text-muted); margin-top: 14px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: .82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.footer-bottom .age-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.footer-logos { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-logos span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .7rem;
  font-family: 'Oswald', sans-serif;
  padding: 5px 10px;
  border-radius: 6px;
}

/* ─── JACKPOT BANNER ─── */
.jackpot-banner {
  background: linear-gradient(135deg, #1a0f00, #2e1a00, #1a0f00);
  border: 1px solid var(--gold-dark);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 24px;
  max-width: calc(1280px - 48px);
  margin: 0 auto 0;
}
.jb-left h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.jb-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212,175,55,.6);
  line-height: 1;
  transition: all .3s ease;
}
.jb-right { display: flex; gap: 14px; align-items: center; }

/* ─── TWO-COL LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* ─── SEO ARTICLE ─── */
.seo-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  border-top: 1px solid var(--border);
}
.seo-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin: 40px 0 12px;
}
.seo-content h2:first-of-type { margin-top: 0; }
.seo-content p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 860px;
}
.seo-content .seo-intro {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.seo-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dashed rgba(212,175,55,.4);
  transition: border-color .2s;
}
.seo-content a:hover { border-color: var(--gold); }

/* FAQ */
.faq-block { margin-top: 40px; }
.faq-block h2 { margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-arrow {
  font-size: .7rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* Internal links nav */
.seo-links {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 860px;
}
.seo-links h3 {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.seo-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.seo-links ul li a {
  font-size: .86rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dashed rgba(212,175,55,.3);
  transition: border-color .2s;
}
.seo-links ul li a:hover { border-color: var(--gold); }

/* ─── SCROLLTOP ─── */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px; height: 42px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #000;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  box-shadow: 0 4px 16px rgba(212,175,55,.4);
}
#scrollTop.visible { opacity: 1; pointer-events: all; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav a { padding: 8px 10px; font-size: .85rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .header-inner { gap: 12px; }
  .logo span { display: none; }
}
