﻿/* ============================================================
   GANGSTA CASINO CANADA — Master Stylesheet
   Brand: Dark Navy + Gold + Blue | gangstacasino.ca
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── ROOT VARIABLES ── */
:root {
  --bg:            #07080F;
  --bg-alt:        #0B0C1C;
  --bg-card:       #101224;
  --bg-card2:      #151730;
  --gold:          #C9892A;
  --gold-lt:       #E8B44B;
  --gold-br:       #F5D060;
  --gold-sh:       #FFE27C;
  --blue:          #1B3880;
  --blue-lt:       #2B52C8;
  --text:          #EDE8D5;
  --text-2:        #A89F8C;
  --text-muted:    #6B6880;
  --border:        rgba(201,137,42,0.22);
  --border-h:      rgba(201,137,42,0.55);
  --green:         #22A06B;
  --red:           #C0392B;
  --grad-gold:     linear-gradient(135deg,#C9892A 0%,#F5D060 50%,#C9892A 100%);
  --grad-blue:     linear-gradient(135deg,#1B3880 0%,#2B52C8 100%);
  --grad-card:     linear-gradient(135deg,rgba(201,137,42,0.06) 0%,transparent 70%);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.55);
  --shadow-gold:   0 4px 24px rgba(201,137,42,0.30);
  --shadow-btn:    0 6px 20px rgba(201,137,42,0.40);
  --container:     1200px;
  --radius:        12px;
  --radius-lg:     20px;
  --trans:         0.28s ease;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { overflow-x:hidden; scroll-behavior:smooth; }
body {
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  font-size:16px;
  line-height:1.75;
  overflow-x:hidden;
  max-width:100%;
}
img { display:block; max-width:100%; height:auto; }
a { color:var(--gold-lt); text-decoration:none; transition:color var(--trans); }
a:hover { color:var(--gold-sh); }
ul,ol { padding-left:1.4rem; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family:'Playfair Display',serif;
  line-height:1.25;
  color:var(--text);
}
h1 { font-size:clamp(2rem,4.5vw,3.2rem); font-weight:900; }
h2 { font-size:clamp(1.5rem,3vw,2.2rem); font-weight:700; }
h3 { font-size:clamp(1.1rem,2vw,1.5rem); font-weight:700; }
h4 { font-size:1.1rem; font-weight:700; }
.section-title {
  text-align:center;
  margin-bottom:0.5rem;
}
.section-title span {
  background:var(--grad-gold);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.section-subtitle {
  text-align:center;
  color:var(--text-2);
  margin-bottom:2.5rem;
  font-size:1rem;
}

/* ── LAYOUT ── */
.container { max-width:var(--container); margin:0 auto; padding:0 20px; }
.section { padding:72px 0; }
.section-alt { background:var(--bg-alt); }

/* ── HEADER ── */
.site-header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(7,8,15,0.97);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.header-inner {
  display:flex;
  align-items:center;
  height:70px;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
  gap:8px;
}
.logo-wrap { flex-shrink:0; display:flex; align-items:center; }
.logo-wrap img { height:44px; width:auto; object-fit:contain; }
.desktop-nav {
  display:flex;
  align-items:center;
  gap:2px;
  margin-left:auto;
}
.desktop-nav a {
  color:var(--text-2);
  font-size:0.88rem;
  font-weight:500;
  padding:8px 12px;
  border-radius:6px;
  transition:all var(--trans);
  white-space:nowrap;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.04em;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color:var(--gold-lt);
  background:rgba(201,137,42,0.08);
}
.header-actions {
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:16px;
  flex-shrink:0;
}
.btn-login {
  color:var(--gold-lt);
  font-size:0.85rem;
  font-weight:600;
  padding:8px 16px;
  border:1px solid var(--border);
  border-radius:8px;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.06em;
  transition:all var(--trans);
}
.btn-login:hover {
  color:var(--gold-br);
  border-color:var(--gold);
  background:rgba(201,137,42,0.08);
}
.btn-reg-header {
  background:var(--grad-gold);
  color:#07080F;
  font-size:0.85rem;
  font-weight:700;
  padding:8px 18px;
  border-radius:8px;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.06em;
  transition:all var(--trans);
  box-shadow:var(--shadow-btn);
}
.btn-reg-header:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(201,137,42,0.55);
  color:#07080F;
}
.hamburger {
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px;
  height:40px;
  background:none;
  border:1px solid var(--border);
  border-radius:8px;
  cursor:pointer;
  padding:8px;
  flex-shrink:0;
}
.hamburger span {
  display:block;
  width:100%;
  height:2px;
  background:var(--gold-lt);
  border-radius:2px;
  transition:all var(--trans);
}

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar {
  display:none;
  background:var(--grad-gold);
  text-align:center;
  padding:10px 20px;
}
.mobile-cta-bar a {
  color:#07080F;
  font-weight:700;
  font-size:0.9rem;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.06em;
}

/* ── NAV DRAWER (MOBILE) ── */
.nav-drawer {
  position:fixed;
  top:0;
  right:-100%;
  width:min(320px,88vw);
  height:100vh;
  background:var(--bg-card2);
  border-left:1px solid var(--border);
  z-index:1001;
  transition:right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y:auto;
  padding:80px 24px 40px;
}
.nav-drawer.open { right:0; }
.nav-drawer-close {
  position:absolute;
  top:20px;
  right:20px;
  background:none;
  border:1px solid var(--border);
  color:var(--text-2);
  width:36px;
  height:36px;
  border-radius:8px;
  font-size:1.2rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all var(--trans);
}
.nav-drawer-close:hover { color:var(--gold-lt); border-color:var(--gold); }
.nav-drawer a:not(.btn-drawer-reg):not(.btn-drawer-login) {
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text-2);
  padding:13px 16px;
  border-radius:10px;
  font-family:'Oswald',sans-serif;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  margin-bottom:4px;
  transition:all var(--trans);
  border:1px solid transparent;
}
.nav-drawer a:not(.btn-drawer-reg):not(.btn-drawer-login):hover {
  color:var(--gold-lt);
  background:rgba(201,137,42,0.06);
  border-color:var(--border);
}
.drawer-divider {
  border:none;
  border-top:1px solid var(--border);
  margin:16px 0;
}
.btn-drawer-login {
  display:block;
  text-align:center;
  color:var(--gold-lt);
  border:1px solid var(--gold);
  padding:12px 20px;
  border-radius:10px;
  font-family:'Oswald',sans-serif;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:10px;
  transition:all var(--trans);
}
.btn-drawer-login:hover { background:rgba(201,137,42,0.1); color:var(--gold-br); }
.btn-drawer-reg {
  display:block;
  text-align:center;
  background:var(--grad-gold);
  color:#07080F;
  padding:13px 20px;
  border-radius:10px;
  font-family:'Oswald',sans-serif;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.06em;
  margin-bottom:4px;
  box-shadow:var(--shadow-btn);
  transition:all var(--trans);
}
.btn-drawer-reg:hover { transform:translateY(-2px); color:#07080F; }
.nav-overlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  z-index:1000;
  backdrop-filter:blur(4px);
}
.nav-overlay.open { display:block; }

/* ── BUTTONS ── */
.btn-primary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--grad-gold);
  color:#07080F;
  font-family:'Oswald',sans-serif;
  font-weight:700;
  font-size:0.95rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  padding:14px 28px;
  border-radius:10px;
  box-shadow:var(--shadow-btn);
  transition:all var(--trans);
  border:none;
  cursor:pointer;
  text-decoration:none;
}
.btn-primary:hover {
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(201,137,42,0.55);
  color:#07080F;
}
.btn-secondary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:var(--gold-lt);
  border:1px solid var(--gold);
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:0.95rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  padding:13px 26px;
  border-radius:10px;
  transition:all var(--trans);
  text-decoration:none;
}
.btn-secondary:hover {
  background:rgba(201,137,42,0.1);
  transform:translateY(-2px);
  color:var(--gold-sh);
}
.btn-sm {
  padding:8px 18px;
  font-size:0.82rem;
}

/* ── HERO SECTION ── */
.hero {
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#07080F;
}
.hero-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:0.35;
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(7,8,15,0.95) 0%,rgba(27,56,128,0.25) 60%,rgba(7,8,15,0.80) 100%);
}
.hero-content {
  position:relative;
  z-index:2;
  max-width:var(--container);
  margin:0 auto;
  padding:60px 20px;
  width:100%;
}
.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(27,56,128,0.35);
  border:1px solid rgba(43,82,200,0.45);
  color:var(--gold-lt);
  font-size:0.82rem;
  font-weight:600;
  padding:6px 14px;
  border-radius:30px;
  margin-bottom:16px;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.hero h1 {
  max-width:700px;
  margin-bottom:16px;
  text-shadow:0 2px 20px rgba(0,0,0,0.8);
}
.hero h1 em {
  font-style:normal;
  background:var(--grad-gold);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-desc {
  color:var(--text-2);
  font-size:1.05rem;
  max-width:580px;
  margin-bottom:28px;
}
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; }
.hero-stars {
  display:flex;
  align-items:center;
  gap:4px;
  margin-top:24px;
}
.hero-stars .stars { color:var(--gold-br); font-size:1.1rem; letter-spacing:2px; }
.hero-stars span { color:var(--text-2); font-size:0.9rem; margin-left:8px; }

/* ── STATS BAR ── */
.stats-bar {
  background:var(--bg-card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.stats-bar-inner {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:var(--container);
  margin:0 auto;
}
.stat-item {
  padding:24px 20px;
  text-align:center;
  border-right:1px solid var(--border);
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:'Oswald',sans-serif;
  font-size:2rem;
  font-weight:700;
  background:var(--grad-gold);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
  margin-bottom:4px;
}
.stat-label { font-size:0.82rem; color:var(--text-2); text-transform:uppercase; letter-spacing:0.06em; }

/* ── CARDS ── */
.card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  transition:all var(--trans);
  position:relative;
  overflow:hidden;
}
.card::before {
  content:'';
  position:absolute;
  inset:0;
  background:var(--grad-card);
  opacity:0;
  transition:opacity var(--trans);
  pointer-events:none;
}
.card:hover {
  border-color:var(--border-h);
  transform:translateY(-4px);
  box-shadow:var(--shadow-gold);
}
.card:hover::before { opacity:1; }
.card-icon {
  width:48px;
  height:48px;
  background:rgba(201,137,42,0.12);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  margin-bottom:14px;
}

/* ── GRIDS ── */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

/* ── GOLD DIVIDER ── */
.gold-divider {
  width:60px;
  height:3px;
  background:var(--grad-gold);
  border-radius:3px;
  margin:12px auto 0;
}
.gold-divider-left {
  width:60px;
  height:3px;
  background:var(--grad-gold);
  border-radius:3px;
  margin:12px 0 20px;
}

/* ── BONUS PACKAGE TABLE ── */
.bonus-table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; }
.bonus-table {
  width:100%;
  border-collapse:collapse;
  font-size:0.92rem;
}
.bonus-table th {
  background:var(--blue);
  color:#fff;
  padding:13px 16px;
  text-align:left;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.04em;
  font-weight:600;
  font-size:0.85rem;
  white-space:nowrap;
}
.bonus-table th:first-child { border-radius:8px 0 0 0; }
.bonus-table th:last-child { border-radius:0 8px 0 0; }
.bonus-table td {
  padding:12px 16px;
  border-bottom:1px solid var(--border);
  vertical-align:middle;
}
.bonus-table tr:nth-child(even) td { background:rgba(201,137,42,0.03); }
.bonus-table tr:hover td { background:rgba(201,137,42,0.07); }
.td-highlight {
  font-weight:700;
  color:var(--gold-lt);
  font-family:'Oswald',sans-serif;
}
.badge-blue {
  display:inline-block;
  background:rgba(27,56,128,0.25);
  border:1px solid rgba(43,82,200,0.4);
  color:var(--blue-lt);
  font-size:0.75rem;
  font-weight:600;
  padding:3px 10px;
  border-radius:20px;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}
.badge-gold {
  display:inline-block;
  background:rgba(201,137,42,0.15);
  border:1px solid rgba(201,137,42,0.4);
  color:var(--gold-lt);
  font-size:0.75rem;
  font-weight:600;
  padding:3px 10px;
  border-radius:20px;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
}
.badge-green {
  display:inline-block;
  background:rgba(34,160,107,0.15);
  border:1px solid rgba(34,160,107,0.4);
  color:var(--green);
  font-size:0.75rem;
  font-weight:600;
  padding:3px 10px;
  border-radius:20px;
}

/* ── RATING BAR ── */
.rating-breakdown { display:flex; flex-direction:column; gap:12px; }
.rating-row {
  display:grid;
  grid-template-columns:140px 1fr 50px;
  gap:12px;
  align-items:center;
}
.rating-label { font-size:0.88rem; color:var(--text-2); }
.rating-bar-track {
  height:8px;
  background:rgba(255,255,255,0.08);
  border-radius:4px;
  overflow:hidden;
}
.rating-bar-fill {
  height:100%;
  background:var(--grad-gold);
  border-radius:4px;
  transition:width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.rating-num {
  font-weight:700;
  font-size:0.88rem;
  color:var(--gold-lt);
  text-align:right;
}

/* ── CHART CONTAINER ── */
.chart-wrap {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 24px;
}
.chart-title {
  font-size:1rem;
  font-weight:700;
  margin-bottom:20px;
  font-family:'Playfair Display',serif;
}
.chart-container { position:relative; }

/* ── PROS / CONS ── */
.pros-cons {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.pros-box, .cons-box {
  background:var(--bg-card);
  border-radius:var(--radius);
  padding:24px;
}
.pros-box { border:1px solid rgba(34,160,107,0.3); }
.cons-box { border:1px solid rgba(192,57,43,0.3); }
.pros-box h4 { color:var(--green); margin-bottom:16px; }
.cons-box h4 { color:var(--red); margin-bottom:16px; }
.pros-box li, .cons-box li {
  list-style:none;
  padding:7px 0;
  border-bottom:1px solid var(--border);
  font-size:0.9rem;
  display:flex;
  align-items:flex-start;
  gap:8px;
}
.pros-box li:last-child, .cons-box li:last-child { border-bottom:none; }
.pros-box li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; margin-top:2px; }
.cons-box li::before { content:'✗'; color:var(--red); font-weight:700; flex-shrink:0; margin-top:2px; }

/* ── AUTHOR BOX ── */
.author-box {
  background:var(--bg-card2);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  display:flex;
  gap:24px;
  align-items:flex-start;
}
.author-photo {
  width:100px;
  height:120px;
  border-radius:12px;
  object-fit:cover;
  object-position:top center;
  border:2px solid var(--gold);
  flex-shrink:0;
}
.author-info { flex:1; min-width:0; }
.author-name {
  font-family:'Playfair Display',serif;
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:2px;
}
.author-title {
  color:var(--gold-lt);
  font-size:0.82rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.07em;
  margin-bottom:12px;
  font-family:'Oswald',sans-serif;
}
.author-bio { font-size:0.92rem; color:var(--text-2); line-height:1.65; }
.author-tags {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:12px;
}
.author-tag {
  font-size:0.75rem;
  padding:3px 10px;
  background:rgba(201,137,42,0.1);
  border:1px solid var(--border);
  border-radius:20px;
  color:var(--text-2);
}

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.faq-q {
  width:100%;
  background:none;
  border:none;
  color:var(--text);
  font-family:'Inter',sans-serif;
  font-size:0.95rem;
  font-weight:600;
  padding:18px 20px;
  text-align:left;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  transition:color var(--trans);
}
.faq-q:hover { color:var(--gold-lt); }
.faq-arrow {
  flex-shrink:0;
  width:24px;
  height:24px;
  background:rgba(201,137,42,0.1);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.8rem;
  transition:transform var(--trans);
  color:var(--gold-lt);
}
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a {
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease, padding var(--trans);
  padding:0 20px;
  color:var(--text-2);
  font-size:0.92rem;
}
.faq-item.open .faq-a {
  max-height:400px;
  padding:0 20px 18px;
}

/* ── PAYMENT ICONS ── */
.payment-icons {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.pay-badge {
  background:var(--bg-card2);
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px 14px;
  font-size:0.82rem;
  font-weight:600;
  color:var(--text-2);
  display:flex;
  align-items:center;
  gap:6px;
  transition:all var(--trans);
}
.pay-badge:hover { border-color:var(--gold); color:var(--gold-lt); }

/* ── PROVIDERS GRID ── */
.providers-grid { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.provider-pill {
  background:var(--bg-card2);
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px 18px;
  font-size:0.85rem;
  font-weight:500;
  color:var(--text-2);
  transition:all var(--trans);
}
.provider-pill:hover {
  border-color:var(--gold);
  color:var(--gold-lt);
  background:rgba(201,137,42,0.06);
}

/* ── OVERALL SCORE ── */
.overall-score-box {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  text-align:center;
}
.score-circle {
  width:120px;
  height:120px;
  border-radius:50%;
  background:var(--grad-gold);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  box-shadow:var(--shadow-gold);
}
.score-num {
  font-family:'Oswald',sans-serif;
  font-size:2.5rem;
  font-weight:700;
  color:#07080F;
  line-height:1;
}
.score-max { font-size:0.8rem; color:rgba(7,8,15,0.6); font-weight:600; }

/* ── FEATURE LIST ── */
.feature-list { display:flex; flex-direction:column; gap:10px; }
.feature-row {
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 16px;
  background:var(--bg-card);
  border-radius:10px;
  border:1px solid var(--border);
  transition:all var(--trans);
}
.feature-row:hover { border-color:var(--border-h); }
.feature-icon {
  width:36px;
  height:36px;
  background:rgba(201,137,42,0.12);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  flex-shrink:0;
}
.feature-text h4 { font-size:0.9rem; margin-bottom:3px; }
.feature-text p { font-size:0.82rem; color:var(--text-2); }

/* ── STEP CARDS ── */
.steps-grid { display:flex; flex-direction:column; gap:16px; }
.step-card {
  display:flex;
  gap:20px;
  align-items:flex-start;
  padding:24px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:all var(--trans);
}
.step-card:hover { border-color:var(--border-h); transform:translateX(4px); }
.step-num {
  width:44px;
  height:44px;
  background:var(--grad-gold);
  color:#07080F;
  font-family:'Oswald',sans-serif;
  font-size:1.3rem;
  font-weight:700;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.step-content h4 { margin-bottom:6px; }
.step-content p { font-size:0.9rem; color:var(--text-2); }

/* ── CTA BANNER ── */
.cta-section {
  background:linear-gradient(135deg,#0B0C1C 0%,#1B3880 100%);
  border-top:1px solid rgba(43,82,200,0.3);
  border-bottom:1px solid rgba(43,82,200,0.3);
  text-align:center;
  padding:72px 20px;
}
.cta-section h2 { margin-bottom:12px; }
.cta-section p { color:var(--text-2); max-width:540px; margin:0 auto 28px; }
.cta-actions { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
.bonus-highlight {
  display:inline-block;
  background:var(--grad-gold);
  color:#07080F;
  font-family:'Oswald',sans-serif;
  font-weight:700;
  font-size:1.4rem;
  padding:8px 24px;
  border-radius:8px;
  margin:16px auto;
  letter-spacing:0.04em;
}

/* ── FOOTER ── */
.site-footer {
  background:var(--bg-alt);
  border-top:1px solid var(--border);
  padding:56px 0 0;
}
.footer-grid {
  display:grid;
  grid-template-columns:260px 1fr 1fr 1fr;
  gap:40px;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px 40px;
}
.footer-brand .logo-wrap img { height:38px; margin-bottom:14px; }
.footer-tagline { font-size:0.88rem; color:var(--text-muted); line-height:1.65; }
.footer-col h5 {
  font-family:'Oswald',sans-serif;
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--gold-lt);
  margin-bottom:14px;
}
.footer-col ul { list-style:none; padding:0; }
.footer-col li { margin-bottom:8px; }
.footer-col a { color:var(--text-muted); font-size:0.88rem; transition:color var(--trans); }
.footer-col a:hover { color:var(--gold-lt); }
.footer-bottom {
  border-top:1px solid var(--border);
  padding:20px;
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  justify-content:space-between;
}
.footer-legal { font-size:0.78rem; color:var(--text-muted); }
.footer-18 {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.78rem;
  color:var(--text-muted);
}
.badge-18 {
  width:32px;
  height:32px;
  border:2px solid var(--text-muted);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:0.75rem;
  color:var(--text-muted);
  flex-shrink:0;
}
.footer-full { padding-bottom:0; }
.footer-full .footer-bottom { margin-bottom:0; }

/* ── HERO INNER PAGES ── */
.hero-inner {
  position:relative;
  min-height:320px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.hero-inner .hero-bg { opacity:0.3; }
.hero-inner .hero-overlay {
  background:linear-gradient(180deg,rgba(7,8,15,0.3) 0%,rgba(7,8,15,0.95) 100%);
}
.hero-inner .hero-content { padding-bottom:48px; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.82rem;
  color:var(--text-muted);
  margin-bottom:12px;
}
.breadcrumbs a { color:var(--text-muted); }
.breadcrumbs a:hover { color:var(--gold-lt); }
.breadcrumbs .sep { opacity:0.4; }

/* ── COMPARISON TABLE ── */
.compare-table { width:100%; border-collapse:collapse; font-size:0.88rem; }
.compare-table th {
  background:var(--bg-card2);
  color:var(--text);
  padding:12px 14px;
  text-align:left;
  font-weight:600;
  border-bottom:2px solid var(--gold);
  white-space:nowrap;
}
.compare-table td { padding:11px 14px; border-bottom:1px solid var(--border); vertical-align:middle; }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table tr:hover td { background:rgba(201,137,42,0.04); }
.check-yes { color:var(--green); font-size:1rem; }
.check-no { color:var(--red); font-size:1rem; }

/* ── INFO BOX ── */
.info-box {
  background:rgba(27,56,128,0.12);
  border:1px solid rgba(43,82,200,0.3);
  border-radius:var(--radius);
  padding:20px 24px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.info-box-icon { font-size:1.4rem; flex-shrink:0; margin-top:2px; }
.info-box p { font-size:0.9rem; color:var(--text-2); }
.info-box strong { color:var(--text); }

/* ── WARNING BOX ── */
.warning-box {
  background:rgba(201,137,42,0.08);
  border:1px solid rgba(201,137,42,0.3);
  border-radius:var(--radius);
  padding:16px 20px;
  font-size:0.88rem;
  color:var(--text-2);
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.warning-box::before { content:'⚠️'; flex-shrink:0; }

/* ── SCORE STARS ── */
.star-row { display:flex; gap:3px; }
.star-row .s { font-size:1rem; color:var(--gold-br); }
.star-row .s.empty { color:var(--bg-card2); }

/* ── SECTION HERO IMG ── */
.section-hero-img {
  width:100%;
  height:280px;
  object-fit:cover;
  object-position:center;
  border-radius:var(--radius-lg);
  margin-bottom:32px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes shimmer {
  0%   { background-position:0% 50%; }
  50%  { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}
@keyframes pulse-gold {
  0%,100% { box-shadow:0 4px 24px rgba(201,137,42,0.30); }
  50%      { box-shadow:0 4px 32px rgba(201,137,42,0.55); }
}
.animate-fade { animation:fadeUp 0.6s ease both; }
.btn-primary { animation:pulse-gold 3s infinite; }

/* ── REVEAL ON SCROLL ── */
.reveal { opacity:0; transform:translateY(18px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ── INNER HERO ALIGN BOTTOM ── */
.hero-inner {
  display:flex;
  align-items:flex-end;
}
.hero-inner .hero-content {
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:36px 20px 48px;
}

/* ── AFFILIATE DISCLOSURE BAR ── */
.disclosure-bar {
  background:rgba(27,56,128,0.18);
  border-bottom:1px solid rgba(43,82,200,0.25);
  text-align:center;
  padding:8px 20px;
  font-size:0.78rem;
  color:var(--text-muted);
}
.disclosure-bar a { color:var(--text-muted); text-decoration:underline; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width:1024px) {
  .desktop-nav { display:none; }
  .btn-login { display:none; }
  .btn-reg-header { display:inline-flex; font-size:0.78rem; padding:7px 13px; }
  .hamburger { display:flex; }
  .mobile-cta-bar { display:block; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .stats-bar-inner { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right:none; }
  .stat-item:nth-child(3) { border-top:1px solid var(--border); }
}
@media (max-width:768px) {
  .section { padding:52px 0; }
  .grid-2, .grid-3 { grid-template-columns:1fr; }
  .pros-cons { grid-template-columns:1fr; }
  .rating-row { grid-template-columns:110px 1fr 40px; }
  .hero { min-height:380px; }
  .hero-content { padding:48px 20px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; text-align:center; gap:8px; }
  .author-box { flex-direction:column; align-items:center; text-align:center; }
  .author-tags { justify-content:center; }
  .author-photo { width:90px; height:110px; }
  .section-hero-img { height:200px; }
  .hero-inner { min-height:240px; }
  h2 { font-size:1.5rem; }
}
@media (max-width:640px) {
  .stats-bar-inner { grid-template-columns:repeat(2,1fr); }
  .stat-item { padding:16px 12px; }
  .stat-num { font-size:1.5rem; }
  .grid-4 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .hero-ctas { flex-direction:column; }
  .btn-primary, .btn-secondary { width:100%; justify-content:center; }
  .bonus-table th, .bonus-table td { padding:9px 10px; font-size:0.82rem; }
  .cta-actions { flex-direction:column; align-items:center; }
  .compare-table th, .compare-table td { padding:9px 10px; font-size:0.82rem; }
  .header-inner { padding:0 14px; }
  .logo-wrap img { height:36px; }
}

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--gold-br);
  color: #07080F;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-size: 0.85rem;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--navy-accent);
}

/* ── AFFILIATE DISCLOSURE BAR ── */
.affiliate-disclosure {
  background: rgba(201,137,42,0.08);
  border-bottom: 1px solid rgba(201,137,42,0.2);
  color: var(--text-2);
  font-size: 0.75rem;
  text-align: center;
  padding: 8px 20px;
  line-height: 1.4;
}
.affiliate-disclosure strong { color: var(--gold-lt); }

/* ── COOKIE CONSENT BANNER ── */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  border-top: 2px solid var(--gold-br);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  flex-wrap: wrap;
}
#cookie-consent p {
  font-size: 0.82rem;
  color: var(--text-2);
  margin: 0;
  flex: 1;
}
#cookie-consent p a { color: var(--gold-lt); }
.cookie-btn {
  background: var(--grad-gold);
  color: #07080F;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s;
}
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-btn-decline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 600px) {
  #cookie-consent { flex-direction: column; text-align: center; }
}