:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #9A7A2E;
  --black: #0A0A0F;
  --dark: #12121A;
  --dark2: #1A1A26;
  --dark3: #22223A;
  --white: #FFFFFF;
  --off-white: #F0EAD6;
  --text-muted: #A09080;
  --red: #C0392B;
  --green: #1A6B3A;
  --green-light: #27AE60;
  --radius: 8px;
  --radius-lg: 16px;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.25s ease;
}

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

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

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
}

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

img { display: none !important; }

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

/* ===== FAVICON SVG inline via :root ===== */

/* ===== TOP BONUS BANNER ===== */
.top-banner {
  background: linear-gradient(90deg, #7B2D00 0%, #C9A84C 40%, #E8C96A 60%, #9A7A2E 100%);
  padding: 14px 20px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.top-banner p {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.top-banner .btn-banner {
  display: inline-block;
  background: var(--black);
  color: var(--gold);
  padding: 9px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.top-banner .btn-banner:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--dark);
  border-bottom: 1px solid #2a2a3a;
  position: sticky;
  top: 0;
  z-index: 99;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-text span { color: var(--white); }

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a {
  color: var(--off-white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.02em;
}
nav a:hover { background: var(--dark3); color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0A0A0F 0%, #1A1520 35%, #12101A 70%, #0A0A0F 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 32px rgba(201,168,76,0.5);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
}

/* ===== FEATURE CHIPS ===== */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.feat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--off-white);
}
.feat-chip .chip-icon {
  font-size: 1.1rem;
}

/* ===== SCROLLING GAME TICKER ===== */
.game-ticker-wrap {
  background: var(--dark);
  border-top: 1px solid #2a2a3a;
  border-bottom: 1px solid #2a2a3a;
  overflow: hidden;
  padding: 0;
}
.game-ticker {
  display: flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
}
.game-ticker:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid #2a2a3a;
  cursor: pointer;
  transition: color var(--transition);
  white-space: nowrap;
}
.ticker-item:hover { color: var(--gold); }
.ticker-icon {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--dark3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section { padding: 72px 0; }
section:nth-child(even) { background: var(--dark); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.65;
}

/* ===== OVERVIEW CARDS ===== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.ov-card {
  background: var(--dark3);
  border: 1px solid #2a2a3a;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color var(--transition), transform var(--transition);
}
.ov-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}
.ov-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.ov-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ov-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ARTICLE CONTENT ===== */
.article-body {
  max-width: 820px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  margin: 44px 0 14px;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 28px 0 10px;
  line-height: 1.3;
}
.article-body p {
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.98rem;
}
.article-body ul, .article-body ol {
  margin: 12px 0 20px 22px;
  color: var(--off-white);
}
.article-body li {
  margin-bottom: 8px;
  font-size: 0.97rem;
  line-height: 1.7;
}
.article-body li::marker { color: var(--gold); }
.article-body strong { color: var(--white); }

/* ===== VERDICT BOX ===== */
.verdict-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin: 32px 0;
}
.verdict-box h3 {
  color: var(--gold) !important;
  font-size: 1.05rem !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}
.verdict-box p {
  margin-bottom: 0 !important;
  font-size: 0.95rem !important;
}

/* ===== RATING TABLE ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid #2a2a3a;
  margin: 28px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
  font-size: 0.92rem;
}
thead { background: var(--dark3); }
thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  text-transform: uppercase;
  border-bottom: 1px solid #2a2a3a;
}
tbody tr { border-bottom: 1px solid #1e1e2e; transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
tbody td {
  padding: 13px 18px;
  color: var(--off-white);
  vertical-align: middle;
}
tbody td:first-child { font-weight: 600; color: var(--white); }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(90deg, #1A1000 0%, #2E1F00 30%, #3A2500 70%, #1A1000 100%);
  border-top: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  padding: 28px 20px;
  text-align: center;
}
.mid-banner p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 14px;
}
.mid-banner p span { color: var(--gold); }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.game-card {
  background: var(--dark3);
  border: 1px solid #2a2a3a;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
}
.game-card:hover::before { opacity: 1; }
.gc-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  border: 1px solid #2a2a3a;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.game-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.game-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}
.gc-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}

/* ===== PAYMENTS ===== */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.pay-card {
  background: var(--dark3);
  border: 1px solid #2a2a3a;
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pay-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.pay-info h3 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.pay-info p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.4; }

/* ===== PROS/CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.pc-box {
  background: var(--dark3);
  border: 1px solid #2a2a3a;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.pc-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-box.pros h3 { color: var(--green-light); }
.pc-box.cons h3 { color: #E74C3C; }
.pc-list { list-style: none; margin: 0; padding: 0; }
.pc-list li {
  padding: 7px 0;
  border-bottom: 1px solid #2a2a3a;
  font-size: 0.88rem;
  color: var(--off-white);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.pc-list li:last-child { border-bottom: none; }
.pc-list li::before { flex-shrink: 0; margin-top: 2px; font-size: 0.85rem; }
.pros .pc-list li::before { content: '✓'; color: var(--green-light); }
.cons .pc-list li::before { content: '✗'; color: #E74C3C; }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--dark3);
  border: 1px solid #2a2a3a;
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  transition: border-color var(--transition);
}
.step:hover { border-color: var(--gold-dark); }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 900;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.step-body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark3);
  border: 1px solid #2a2a3a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold-dark); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}
.faq-q h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  flex: 1;
  padding-right: 14px;
  margin: 0;
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  font-weight: 700;
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: rgba(201,168,76,0.2);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a-inner p { margin-bottom: 8px; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ===== RESPONSIBLE GAMBLING ===== */
.rg-box {
  background: linear-gradient(135deg, rgba(26,107,58,0.1) 0%, rgba(26,107,58,0.04) 100%);
  border: 1px solid rgba(39,174,96,0.3);
  border-left: 4px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin: 0;
}
.rg-box h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 14px;
}
.rg-box p { color: var(--off-white); font-size: 0.93rem; margin-bottom: 10px; line-height: 1.7; }
.rg-box p:last-child { margin-bottom: 0; }
.rg-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.rg-tool {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-light);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid #2a2a3a;
  padding: 56px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2a3a;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 22px 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.f-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #2a2a3a;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.providers-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.prov-badge {
  background: var(--dark3);
  border: 1px solid #2a2a3a;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== RATING STARS ===== */
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.rating-bar-wrap { flex: 1; background: var(--dark3); border-radius: 50px; height: 6px; }
.rating-bar { height: 6px; border-radius: 50px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.rating-label { font-size: 0.8rem; color: var(--text-muted); min-width: 120px; }
.rating-score { font-size: 0.82rem; font-weight: 700; color: var(--gold); min-width: 32px; text-align: right; }

/* ===== TWO COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--dark3);
  border: 1px solid #2a2a3a;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.highlight-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 18px;
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--dark);
  border-top: 1px solid #2a2a3a;
  padding: 10px 20px 16px;
}
.mobile-nav a {
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--off-white);
  border-bottom: 1px solid #1e1e2e;
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
  .hero { padding: 50px 16px 44px; }
  section { padding: 52px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
}
@media (max-width: 480px) {
  .overview-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .top-banner p { font-size: 0.82rem; }
}
