:root {
  --brand-navy: #003087;
  --brand-yellow: #FFB800;
  --brand-yellow-dark: #e6a500;
  --brand-green: #00A650;
  --brand-green-dark: #008f44;
  --white: #ffffff;
  --light-bg: #f4f7fc;
  --mid-bg: #e8eef7;
  --dark-bg: #001a52;
  --darker-bg: #00113a;
  --text-primary: #0d1b3e;
  --text-secondary: #3a4d6b;
  --text-muted: #6b7fa3;
  --border: #c9d5e8;
  --border-light: #dde6f3;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,48,135,0.08);
  --shadow-md: 0 4px 20px rgba(0,48,135,0.14);
  --shadow-lg: 0 8px 40px rgba(0,48,135,0.18);
}

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

img { display: none !important; }

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

/* ─── TOP BONUS STRIP ─── */
.top-bonus-strip {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #ffd25a 50%, var(--brand-yellow) 100%);
  padding: 13px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.top-bonus-strip .strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bonus-strip .strip-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-bg);
  letter-spacing: 0.01em;
}
.top-bonus-strip .strip-text span {
  color: var(--brand-navy);
  font-size: 1.1rem;
}
.btn-strip {
  background: var(--brand-navy);
  color: var(--white);
  padding: 9px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.93rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.btn-strip:hover { background: #002070; transform: scale(1.03); }

/* ─── HEADER ─── */
.site-header {
  background: var(--dark-bg);
  padding: 0;
  border-bottom: 3px solid var(--brand-yellow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 20px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.logo-text-block { line-height: 1.2; }
.logo-brand {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-yellow);
  letter-spacing: -0.02em;
  display: block;
}
.logo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,184,0,0.15); color: var(--brand-yellow); }

.header-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-login {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-login:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }
.btn-signup {
  background: var(--brand-yellow);
  color: var(--dark-bg);
  border: none;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-signup:hover { background: var(--brand-yellow-dark); transform: scale(1.03); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 60%, #00245e 100%);
  padding: 64px 20px 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,184,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0,166,80,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.35);
  color: var(--brand-yellow);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--brand-yellow); }
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--brand-yellow);
  color: var(--dark-bg);
  border: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--brand-yellow-dark); transform: scale(1.03); }
.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  min-width: 280px;
  flex-shrink: 0;
}
.hero-card-logo {
  margin-bottom: 18px;
}
.brand-badge-svg {
  display: block;
}
.hero-bonus-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.hero-bonus-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-yellow);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-bonus-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.hero-card-btn {
  width: 100%;
  background: var(--brand-green);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.hero-card-btn:hover { background: var(--brand-green-dark); }
.hero-card-note {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.5;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--mid-bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
}

/* ─── NAV ANCHOR ─── */
.toc-section {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 20px;
}
.toc-section h2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
  max-width: 1120px;
  margin: 0 auto;
}
.toc-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.toc-grid a:hover { border-color: var(--brand-navy); box-shadow: var(--shadow-sm); }
.toc-dot {
  width: 7px; height: 7px;
  background: var(--brand-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTIONS ─── */
.section { padding: 64px 20px; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--dark-bg); color: var(--white); }

.section-header { margin-bottom: 40px; }
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-green);
  margin-bottom: 10px;
  display: block;
}
.section-dark .section-eyebrow { color: var(--brand-yellow); }
.section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.section-dark h2 { color: var(--white); }
.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 660px;
  line-height: 1.75;
}
.section-dark .section-lead { color: rgba(255,255,255,0.7); }

/* ─── CARDS GRID ─── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.section-alt .card { background: var(--white); }
.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand-navy), #0050cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── FEATURE LIST ─── */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--brand-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* ─── BONUS BANNER MID ─── */
.bonus-strip-mid {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0050cc 50%, var(--brand-navy) 100%);
  padding: 36px 20px;
  text-align: center;
}
.bonus-strip-mid .bsm-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.bsm-text { text-align: left; }
.bsm-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.bsm-value {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brand-yellow);
  line-height: 1.1;
}
.bsm-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.btn-bsm {
  background: var(--brand-yellow);
  color: var(--dark-bg);
  border: none;
  padding: 15px 38px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-bsm:hover { background: var(--brand-yellow-dark); transform: scale(1.03); }

/* ─── TABLE ─── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 20px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 600px;
}
.data-table thead th {
  background: var(--brand-navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.data-table tbody tr { border-bottom: 1px solid var(--border-light); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: var(--light-bg); }
.data-table tbody td {
  padding: 14px 18px;
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.55;
}
.data-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 600;
}
.td-val {
  color: var(--brand-navy);
  font-weight: 700;
}
.td-green { color: var(--brand-green); font-weight: 700; }

/* ─── STEPS ─── */
.steps-list { counter-reset: steps; list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.steps-list li::before {
  content: counter(steps);
  min-width: 38px; height: 38px;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; color: var(--text-primary); }
.step-body p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── PROS/CONS ─── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.pros-block, .cons-block {
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.pros-block { background: #eaf7f0; border: 1px solid #b6e8cc; }
.cons-block { background: #fff6f6; border: 1px solid #f5c6c6; }
.pc-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-block .pc-title { color: var(--brand-green-dark); }
.cons-block .pc-title { color: #c0392b; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.pros-block .pc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-green); font-weight: 700; }
.cons-block .pc-list li::before { content: '✗'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

/* ─── RATING BOX ─── */
.rating-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.rating-score {
  text-align: center;
  flex-shrink: 0;
}
.rating-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1;
}
.rating-max { font-size: 1.2rem; color: var(--text-muted); }
.rating-stars { font-size: 1.5rem; margin: 6px 0; letter-spacing: 2px; color: var(--brand-yellow); }
.rating-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.rating-bars { flex: 1; min-width: 200px; }
.rbar { margin-bottom: 12px; }
.rbar-label { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.rbar-track { height: 8px; background: var(--mid-bg); border-radius: 4px; overflow: hidden; }
.rbar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--brand-navy), var(--brand-green)); }

/* ─── FAQ ─── */
.faq-list { margin-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item input[type="checkbox"] { display: none; }
.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text-primary);
  background: var(--white);
  user-select: none;
  transition: background 0.15s;
  gap: 12px;
}
.faq-label:hover { background: var(--light-bg); }
.faq-arrow {
  width: 22px; height: 22px;
  background: var(--mid-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
  font-size: 0.8rem;
  color: var(--brand-navy);
  font-weight: 700;
}
.faq-item input:checked + .faq-label .faq-arrow { transform: rotate(180deg); background: var(--brand-navy); color: var(--white); }
.faq-item input:checked + .faq-label { background: var(--light-bg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item input:checked ~ .faq-body { max-height: 600px; }
.faq-body-inner {
  padding: 16px 20px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
  background: var(--white);
  line-height: 1.7;
}
.faq-body-inner a { color: var(--brand-navy); }

/* ─── RICH TEXT / ARTICLE ─── */
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 12px;
}
.article-body p { margin-bottom: 16px; color: var(--text-secondary); font-size: 0.97rem; line-height: 1.75; }
.article-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.article-body ul li { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 6px; line-height: 1.6; }

/* ─── PAYMENT CARDS ─── */
.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.payment-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* ─── GAMES CATEGORY ─── */
.game-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.game-cat {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0050cc 100%);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  color: var(--white);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.game-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.game-cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.game-cat h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.game-cat p { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ─── SCORE BADGE ─── */
.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.score-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.score-num { font-size: 2rem; font-weight: 900; color: var(--brand-navy); }
.score-lbl { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-top: 4px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--darker-bg);
  color: rgba(255,255,255,0.65);
  padding: 56px 20px 24px;
  border-top: 3px solid var(--brand-yellow);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.footer-brand h3 { color: var(--brand-yellow); font-size: 1.2rem; margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.87rem; margin-bottom: 8px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  max-width: 1120px;
  margin: 0 auto;
}
.footer-bottom .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--brand-yellow); }
.footer-resp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,166,80,0.15);
  border: 1px solid rgba(0,166,80,0.3);
  color: #4de89c;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ─── UTIL ─── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }

.highlight-box {
  background: linear-gradient(135deg, #eaf0ff, #f0f6ff);
  border: 1px solid #c5d6ff;
  border-left: 4px solid var(--brand-navy);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.highlight-box strong { color: var(--brand-navy); }

.warn-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-left: 4px solid var(--brand-yellow-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #5a4000;
  line-height: 1.65;
  margin: 16px 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; }
  .hero-card { width: 100%; max-width: 380px; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .game-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .main-nav { display: none; }
  .hero { padding: 40px 16px 36px; }
  .hero h1 { font-size: 1.8rem; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .game-cat-grid { grid-template-columns: 1fr 1fr; }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .bsm-text { text-align: center; }
  .bonus-strip-mid .bsm-inner { flex-direction: column; text-align: center; }
  .rating-box { flex-direction: column; }
  .section { padding: 44px 16px; }
  .top-bonus-strip .strip-inner { flex-direction: column; gap: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions button { width: 100%; }
}

@media (max-width: 400px) {
  .cards-4 { grid-template-columns: 1fr; }
  .game-cat-grid { grid-template-columns: 1fr; }
}
