/* =============================================
   ALL BRITISH CASINO — UK Review Site
   Brand: Red #C8102E | Gold #FFD700 | Dark #1a1a2e
   ============================================= */

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

:root {
  --red: #C8102E;
  --red-dark: #9e0b24;
  --red-light: #e8203e;
  --gold: #FFD700;
  --gold-dark: #cc9900;
  --gold-muted: #f5c842;
  --navy: #0d1b3e;
  --navy-light: #1a2d5a;
  --dark: #111827;
  --dark-mid: #1f2a40;
  --dark-card: #243352;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --grey-light: #e8ecf2;
  --grey-mid: #9aa3b5;
  --grey-text: #5a637a;
  --green: #1db954;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', Arial, Helvetica, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--off-white);
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* =============================================
   TICKER BAR
   ============================================= */

.ticker-bar {
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-label {
  flex-shrink: 0;
  color: var(--white);
  background: var(--red);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo-block {
  flex-shrink: 0;
}

.logo-svg {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}

.main-nav a {
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--red);
  text-decoration: none;
}

.header-cta {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
}

.header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* =============================================
   HERO BANNER
   ============================================= */

.hero-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1f1035 100%);
  color: var(--white);
  padding: 70px 20px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

.hero-offer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.offer-pill {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
}

.hero-small {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.hero-stats {
  max-width: 700px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* =============================================
   CTA BUTTONS
   ============================================= */

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  box-shadow: 0 4px 14px rgba(200,16,46,0.35);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.45);
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn.big {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: 12px;
}

.cta-btn.small {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 8px;
}

.cta-btn.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(255,215,0,0.35);
}

.section-cta-wrap {
  text-align: center;
  margin-top: 32px;
}

/* =============================================
   PROMO STRIP
   ============================================= */

.promo-strip {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 20px;
  flex-wrap: wrap;
  text-align: center;
}

.promo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.strip-btn {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.strip-btn:hover {
  background: var(--gold-muted);
  color: var(--navy);
}

/* =============================================
   SECTIONS
   ============================================= */

.section {
  padding: 70px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2 {
  color: var(--white);
}

.section-dark h3 {
  color: var(--gold-muted);
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-intro {
  font-size: 17px;
  color: var(--grey-text);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.section-dark .section-intro {
  color: rgba(255,255,255,0.65);
}

/* =============================================
   BONUS CARDS
   ============================================= */

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.bonus-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.bonus-card.featured {
  border-color: var(--red);
  border-width: 2px;
  background: linear-gradient(to bottom right, #fff5f6, #fff);
}

.bonus-icon {
  font-size: 28px;
  line-height: 1;
}

.bonus-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.bonus-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-display);
}

.bonus-card p {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.6;
  flex: 1;
}

.bonus-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bonus-meta span {
  background: var(--grey-light);
  color: var(--grey-text);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

.bonus-avail {
  font-size: 11px;
  color: var(--grey-mid);
  margin-top: 4px;
}

/* =============================================
   SLOTS GRID
   ============================================= */

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.slot-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.slot-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.slot-icon {
  font-size: 32px;
  line-height: 1;
}

.slot-name {
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  line-height: 1.3;
}

.slot-info {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.slot-playing {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.slot-playing strong {
  color: var(--green);
}

/* =============================================
   GAMES GRID
   ============================================= */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, border-color 0.2s;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.game-symbol {
  font-size: 36px;
  line-height: 1;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

.game-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  flex: 1;
}

.playing-count {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.playing-count strong {
  color: var(--green);
}

/* =============================================
   PLAYERS GRID
   ============================================= */

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.player-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s;
}

.player-card:hover {
  transform: translateY(-3px);
}

.player-card.gold {
  border-color: var(--gold);
  background: linear-gradient(to bottom, #fffdf0, #fff);
}

.player-card.silver {
  border-color: #c0c0c0;
  background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.player-card.bronze {
  border-color: #cd7f32;
  background: linear-gradient(to bottom, #fff9f5, #fff);
}

.player-rank {
  font-size: 22px;
  line-height: 1;
}

.player-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
}

.player-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
}

.player-win {
  font-weight: 800;
  font-size: 16px;
  color: var(--red);
}

.player-game {
  font-size: 11px;
  color: var(--grey-mid);
}

/* =============================================
   TOURNAMENTS
   ============================================= */

.tournament-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.tournament-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.tournament-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.t-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 3px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

.tournament-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.t-prize {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
}

.tournament-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  flex: 1;
}

.t-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.t-meta span {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

/* =============================================
   PRINCIPLES
   ============================================= */

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.principle-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s;
}

.principle-card:hover {
  transform: translateY(-3px);
}

.p-icon {
  font-size: 32px;
  line-height: 1;
}

.principle-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
}

.principle-card p {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.65;
}

/* =============================================
   PAYMENTS TABLE
   ============================================= */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.payments-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.payments-table thead tr {
  background: var(--navy);
}

.payments-table thead th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.payments-table tbody tr {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}

.payments-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.payments-table tbody tr:hover {
  background: rgba(255,215,0,0.06);
}

.payments-table tbody td {
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
}

.payments-note {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.payments-note p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 10px;
}

.payments-note p:last-child {
  margin-bottom: 0;
}

/* =============================================
   REVIEW SECTION
   ============================================= */

.review-body {
  max-width: 820px;
}

.review-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 2px solid var(--grey-light);
}

.review-body h3:first-child {
  margin-top: 0;
  border-top: none;
}

.review-body p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pros-block,
.cons-block {
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}

.pros-block {
  background: #f0fff4;
  border: 1px solid #86efac;
}

.cons-block {
  background: #fff5f5;
  border: 1px solid #fca5a5;
}

.pros-block h3,
.cons-block h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.pros-block h3 {
  color: #166534;
}

.cons-block h3 {
  color: #991b1b;
}

.pros-block ul,
.cons-block ul {
  list-style: none;
  padding: 0;
}

.pros-block li,
.cons-block li {
  font-size: 14px;
  line-height: 1.6;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pros-block li:last-child,
.cons-block li:last-child {
  border-bottom: none;
}

.pros-block li {
  color: #15803d;
}

.cons-block li {
  color: #b91c1c;
}

/* =============================================
   RATING BLOCK
   ============================================= */

.rating-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.rating-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-label {
  width: 200px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.rating-bar {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  height: 10px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 20px;
}

.rating-score {
  width: 52px;
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.rating-overall {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 14px;
  margin-top: 4px;
}

.rating-overall span {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.overall-num {
  font-family: var(--font-display);
  font-size: 28px !important;
  color: var(--gold) !important;
}

/* =============================================
   FAQ
   ============================================= */

.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.faq-q:hover {
  background: rgba(255,255,255,0.06);
}

.faq-item.open .faq-q {
  color: var(--gold);
  background: rgba(255,215,0,0.06);
}

.faq-arrow {
  flex-shrink: 0;
  font-size: 12px;
  transition: transform 0.3s;
  color: var(--grey-mid);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 20px 18px;
}

.faq-a p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* =============================================
   REVIEWS
   ============================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.reviewer {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-logo-svg {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

.footer-links h4,
.footer-info h4,
.footer-rg h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-info p,
.footer-rg p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.footer-small {
  font-size: 12px !important;
  color: rgba(255,255,255,0.45) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 6px;
}

.footer-disc {
  font-size: 11px !important;
  color: rgba(255,255,255,0.3) !important;
}

/* =============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================= */

@media (max-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .review-pros-cons {
    grid-template-columns: 1fr;
  }

  .rating-label {
    width: 150px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================= */

@media (max-width: 600px) {
  .section {
    padding: 44px 0;
  }

  .hero-banner {
    padding: 44px 16px 36px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-num {
    font-size: 22px;
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .players-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tournament-cards {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-pros-cons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rating-block {
    padding: 20px 16px;
  }

  .rating-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .rating-label {
    width: 100%;
  }

  .rating-bar {
    flex: 1;
    min-width: 100px;
  }

  .promo-strip {
    flex-direction: column;
    gap: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-q {
    font-size: 14px;
    padding: 14px 16px;
  }

  .table-wrap {
    border-radius: 8px;
  }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
  * {
    transition: none !important;
  }
}

*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
