/* ============================
   NINE CASINO UK — style.css
   Brand: Gold #C9A84C on Deep Dark #181511
   ============================ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D9B0;
  --gold-dark:   #9e7c2a;
  --dark:        #181511;
  --dark-2:      #1f1a12;
  --dark-3:      #26200f;
  --mid:         #2e2614;
  --text:        #f0e8d4;
  --text-muted:  #9e8e6e;
  --text-dark:   #1a140a;
  --white:       #ffffff;
  --green:       #2ecc71;
  --red:         #e74c3c;
  --border:      rgba(201,168,76,0.2);
  --border-mid:  rgba(201,168,76,0.35);
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 20px rgba(201,168,76,0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', Arial, sans-serif;
  --max-w:        1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 10px 22px;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, #e6c25a 100%);
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #b8912a 0%, #d9b84e 50%, #f0d070 100%);
  box-shadow: 0 4px 20px rgba(201,168,76,0.6);
  transform: translateY(-1px);
  color: var(--dark);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
}

.btn--ghost {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-mid);
  color: var(--gold);
}
.btn--ghost:hover {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
}

.btn--sm { padding: 7px 16px; font-size: 0.85rem; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---- Promo Bar ---- */
.promo-bar {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--dark);
  text-align: center;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.promo-bar strong { font-weight: 700; }
.promo-bar .btn--sm {
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--dark);
  font-size: 0.82rem;
  padding: 6px 14px;
}
.promo-bar .btn--sm:hover {
  background: var(--dark-2);
  color: var(--gold-light);
}

/* ---- Header ---- */
.site-header {
  background: rgba(24, 21, 17, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 40px;
  z-index: 900;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo__svg { height: 40px; width: auto; }

.site-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.site-nav__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
}
.site-nav__link:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ---- Hero ---- */
.hero {
  padding: 80px 0 70px;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
              linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 28px;
}
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.bullet-icon { color: var(--gold); font-size: 1rem; }
.hero__cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* Casino Card */
.casino-card {
  background: var(--dark-3);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow), var(--shadow-gold);
  text-align: center;
  position: relative;
}
.casino-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.casino-card__logo-wrap {
  margin: 10px auto 16px;
  display: flex;
  justify-content: center;
}
.casino-card__logo-svg { width: 140px; height: auto; }

.casino-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 14px;
}
.star { color: #888; font-size: 1.2rem; }
.star--full { color: var(--gold); }
.star--half { color: var(--gold); }
.star-label { font-size: 0.9rem; font-weight: 600; color: var(--gold); margin-left: 6px; }

.casino-card__bonus {
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 16px;
}
.casino-card__bonus strong { color: var(--gold); font-size: 1.1rem; }

.casino-card__tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.casino-card__notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
  opacity: 0.7;
}

/* ---- Section Titles ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title--light { color: var(--white); }
.section-title.text-center::after { left: 50%; transform: translateX(-50%); }

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 36px 0 16px;
}
.subsection-title--light { color: var(--gold-light); }

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.section-intro--light { color: #a89a7a; }

/* ---- Content Sections ---- */
.content-section { padding: 72px 0; }
.content-section--dark {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---- Prose ---- */
.prose p {
  color: var(--text);
  margin-bottom: 1.3em;
  line-height: 1.8;
  font-size: 0.97rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose--light p { color: #c8b890; }

/* ---- Snapshot Table ---- */
.snapshot { padding: 60px 0; background: var(--dark-3); border-bottom: 1px solid var(--border); }
.snapshot-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 420px;
}
.data-table thead tr { background: rgba(201,168,76,0.15); }
.data-table th {
  text-align: left;
  padding: 12px 16px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-mid);
}
.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text);
}
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.data-table tbody tr:hover { background: rgba(201,168,76,0.05); }
.data-table td:first-child { font-weight: 600; color: var(--gold-light); }

/* ---- Mid Banner ---- */
.mid-banner {
  background: linear-gradient(90deg, var(--dark-3) 0%, var(--mid) 50%, var(--dark-3) 100%);
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  padding: 20px 0;
}
.mid-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mid-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text);
  font-size: 0.95rem;
}
.mid-banner__text strong { color: var(--gold); font-size: 1.05rem; }

/* ---- Bonus Cards ---- */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin: 28px 0 40px;
}
.bonus-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.bonus-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.bonus-card__icon { font-size: 2rem; margin-bottom: 12px; }
.bonus-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.bonus-card__val { font-size: 1.15rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.bonus-card__note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }

/* ---- Feature Grid ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}
.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--gold); }
.feature-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ---- Game List ---- */
.game-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.game-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 0.2s;
}
.game-tile:hover { border-color: var(--gold); }
.game-tile__art {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  font-weight: 700;
}
.game-tile__art--1 { background: linear-gradient(135deg, #1a0a3e, #5a2dab); }
.game-tile__art--2 { background: linear-gradient(135deg, #3e1a0a, #ab5a2d); }
.game-tile__art--3 { background: linear-gradient(135deg, #0a2840, #2d7aab); }
.game-tile__art--4 { background: linear-gradient(135deg, #0a3e1a, #2dab5a); }
.game-tile__art--5 { background: linear-gradient(135deg, #3e2a0a, #ab8a2d); }
.game-tile__art--6 { background: linear-gradient(135deg, #1a3e3e, #2daaaa); }
.game-tile__num { color: #fff; }
.game-tile__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.game-tile__info strong { font-size: 0.95rem; color: var(--white); }
.game-tile__info span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Live Table Cards ---- */
.live-table-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.live-table-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  transition: border-color 0.2s;
}
.live-table-card:hover { border-color: var(--gold); }
.live-table-card__icon { font-size: 0.9rem; flex-shrink: 0; }
.live-table-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.live-table-card__info strong { font-size: 0.95rem; color: var(--white); }
.live-table-card__info span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Payment Grid ---- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.payment-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color 0.2s;
}
.payment-card:hover { border-color: var(--gold); }
.payment-card__method {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.payment-card__rows { display: flex; flex-direction: column; gap: 6px; }
.payment-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
}
.payment-card__row span:first-child { color: var(--text-muted); }
.payment-card__row span:last-child { color: var(--text); font-weight: 500; }

/* ---- Mobile Section ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
  margin-bottom: 44px;
}
.device-showcase { display: flex; justify-content: center; }
.device-frame {
  width: 220px;
  background: #0f0d09;
  border: 3px solid #333;
  border-radius: 28px;
  padding: 16px 12px;
  box-shadow: var(--shadow);
}
.device-screen { background: var(--dark); border-radius: 18px; overflow: hidden; }
.device-screen__header {
  background: var(--dark-2);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.device-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  display: block;
}
.device-screen__content { padding: 14px 12px; }
.device-logo { margin-bottom: 10px; display: flex; justify-content: center; }
.device-logo svg { width: 80px; height: auto; }
.device-menu {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: center;
}
.device-menu span {
  font-size: 0.68rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 4px 8px;
  border-radius: 4px;
}
.device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.device-tile {
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.device-tile--1 { background: linear-gradient(135deg, #1a0a3e, #5a2dab); color: #fff; }
.device-tile--2 { background: linear-gradient(135deg, #3e1a0a, #ab5a2d); color: #fff; }
.device-tile--3 { background: linear-gradient(135deg, #0a2840, #2d7aab); color: #fff; }
.device-tile--4 { background: linear-gradient(135deg, #0a3e1a, #2dab5a); color: #fff; }
.device-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  padding: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

/* ---- Info Boxes ---- */
.info-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.info-box--warn { border-color: rgba(231,76,60,0.3); }
.info-box__title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.info-box__list { display: flex; flex-direction: column; gap: 8px; }
.info-box__list li { font-size: 0.88rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.info-box__list li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }
.info-box--warn .info-box__list li::before { color: var(--red); }

/* ---- Trust Badges ---- */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.trust-badge {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.trust-badge:hover { border-color: var(--gold); }
.trust-badge__icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.trust-badge strong { display: block; font-size: 0.88rem; color: var(--white); margin-bottom: 6px; }
.trust-badge span { font-size: 0.78rem; color: var(--text-muted); }

/* ---- Support Channels ---- */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.support-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.support-card:hover { border-color: var(--gold); }
.support-card__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.support-card__title { font-weight: 700; color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.support-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* ---- RG Tools ---- */
.rg-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 32px 0;
}
.rg-tool {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.rg-tool__icon { font-size: 1.2rem; }
.rg-notice {
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: #d4a0a0;
  line-height: 1.6;
}
.rg-notice strong { color: var(--white); }

/* ---- Pros/Cons ---- */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-cons-card {
  border-radius: var(--radius);
  padding: 28px 24px;
}
.pros-cons-card--pros {
  background: rgba(46,204,113,0.06);
  border: 1px solid rgba(46,204,113,0.25);
}
.pros-cons-card--cons {
  background: rgba(231,76,60,0.06);
  border: 1px solid rgba(231,76,60,0.2);
}
.pros-cons-card__title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.pros-cons-card ul { display: flex; flex-direction: column; gap: 10px; }
.pros-cons-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.pros-cons-card--pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pros-cons-card--cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--gold); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-arrow {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- Rating ---- */
.rating-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin: 40px 0 28px;
}
.rating-block__item { display: flex; align-items: center; gap: 12px; }
.rating-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 80px;
}
.rating-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
}
.rating-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 30px;
  text-align: right;
}

.overall-score {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--dark-3), var(--mid));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  max-width: 240px;
  margin-bottom: 40px;
}
.overall-score__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.overall-score__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.overall-score__label small { color: var(--text-muted); font-size: 0.78rem; }

.cta-section { padding: 32px 0 0; }
.cta-text {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
}
.cta-text strong { color: var(--gold); }
.legal-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { }
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer-nav__title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav__list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav__list a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.footer-nav__list a:hover { color: var(--gold); }
.footer-rg { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.footer-rg-links { display: flex; flex-wrap: wrap; gap: 8px; }
.rg-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.76rem;
  color: var(--text-muted);
}
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}
.footer-bottom strong { color: var(--text); }

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

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__content { max-width: 100%; }
  .casino-card { max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; }
  .device-showcase { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .promo-bar { font-size: 0.82rem; gap: 10px; }
  .promo-bar__text { font-size: 0.8rem; }
  .header-inner { gap: 14px; }
  .site-nav { display: none; }
  .hero { padding: 48px 0 44px; }
  .hero__title { font-size: 2.2rem; }
  .hero__sub { font-size: 0.95rem; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; }
  .section-title { font-size: 1.5rem; }
  .content-section { padding: 48px 0; }
  .bonus-cards { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .rg-tools { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .mid-banner__inner { flex-direction: column; text-align: center; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .faq-question { font-size: 0.88rem; padding: 14px 16px; }
  .faq-answer p { padding: 0 16px 14px; }
  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 9px 12px; }
  .rating-label { min-width: 64px; }
  .overall-score { margin: 0 auto 36px; }
}

@media (max-width: 480px) {
  .bonus-cards { grid-template-columns: 1fr; }
  .support-channels { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .rg-tools { grid-template-columns: 1fr; }
  .hero__title { font-size: 1.9rem; }
  .promo-bar { flex-direction: column; gap: 8px; }
}

/* ---- Focus styles for accessibility ---- */
.btn:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
