/*
Theme Name:  Slot Single
Theme URI:   https://example.com
Description: Light, premium single-slot review theme — one site = one slot game
Author:      SEO Network
Version:     2.1.0
License:     GNU General Public License v2
*/

/* ============================================================
   VARIABLES — matching slot-review light design system
   ============================================================ */
:root {
  --color-bg:           #f8f9fb;
  --color-bg-alt:       #ffffff;
  --color-bg-card:      #ffffff;
  --color-bg-card2:     #f0f2f5;
  --color-accent:       #E63946;
  --color-accent-dark:  #c52d39;
  --color-accent-light: #fde8ea;
  --color-accent-rgb:   230, 57, 70;
  --color-gold:         #f5a623;
  --color-green:        #22c55e;
  --color-green-dim:    rgba(34,197,94,0.1);
  --color-yellow:       #eab308;
  --color-red:          #ef4444;
  --color-heading:      #2B2D42;
  --color-text:         #555555;
  --color-text-sec:     #6b7280;
  --color-text-muted:   #9ca3af;
  --color-white:        #ffffff;
  --color-border:       #e5e7eb;
  --color-border-light: #f3f4f6;
  --radius:             12px;
  --radius-sm:          8px;
  --radius-lg:          16px;
  --radius-xl:          20px;
  --shadow:             0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:          0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:          0 10px 30px rgba(0,0,0,0.1);
  --shadow-hover:       0 8px 25px rgba(0,0,0,0.12);
  --shadow-accent:      0 4px 14px rgba(var(--color-accent-rgb),0.3);
  --font:               'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:         0.25s ease;
  --max-w:              960px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dark); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 16px; }
h3 { font-size: 1.2rem; }
p { color: var(--color-text); margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { color: var(--color-text); margin-bottom: .4rem; }
strong { color: var(--color-heading); }

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

/* ============================================================
   HEADER / NAVBAR — white sticky
   ============================================================ */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
}
.site-logo a:hover { color: var(--color-heading); }
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-heading);
  font-size: 1.4rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Nav */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.main-nav li a {
  color: var(--color-text);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav li a:hover { color: var(--color-heading); background: var(--color-bg); }

/* Header dual CTAs */
.header-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--color-accent-rgb),0.4);
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
}
.btn-sm { padding: 8px 16px; font-size: .8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn-white {
  background: var(--color-white);
  color: var(--color-heading);
  border-color: var(--color-border);
}
.btn-white:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section { padding: 48px 0; }
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.section-header h2 { margin: 0; }
.section-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================================================
   HERO — TWO COLUMNS (slot review hero)
   ============================================================ */
.slot-hero {
  background: linear-gradient(135deg, #f8f9fb 0%, #eef0f5 50%, #f0ecf8 100%);
  padding: 60px 20px 50px;
  position: relative;
  overflow: hidden;
}
.slot-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb),0.06) 0%, transparent 70%);
  pointer-events: none;
}
.slot-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 480px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-text h1 { margin-bottom: 12px; }
.hero-text h1 .accent { color: var(--color-accent); }
.hero-provider {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-card2);
  color: var(--color-text-sec);
  font-size: .85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
}
.hero-text > p {
  font-size: 1.05rem;
  color: var(--color-text-sec);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.hero-terms {
  font-size: .72rem;
  color: var(--color-text-muted);
}

/* Hero image column */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(var(--color-accent-rgb),0.08) 100%);
  pointer-events: none;
}

/* ============================================================
   QUICK STATS STRIP
   ============================================================ */
.quick-stats-strip {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.quick-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.quick-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.quick-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.quick-stat-label {
  font-size: .72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.quick-stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
}

/* ============================================================
   RTP METER (color-coded progress bar)
   ============================================================ */
.rtp-meter { margin-bottom: 10px; }
.rtp-meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.rtp-meter-label {
  font-size: .72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.rtp-meter-value { font-size: .85rem; font-weight: 700; }
.rtp-meter-value.rtp-high { color: var(--color-green); }
.rtp-meter-value.rtp-med  { color: var(--color-yellow); }
.rtp-meter-value.rtp-low  { color: var(--color-red); }
.rtp-bar {
  width: 100%;
  height: 8px;
  background: var(--color-bg-card2);
  border-radius: 4px;
  overflow: hidden;
}
.rtp-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}
.rtp-bar-fill.rtp-high { background: var(--color-green); }
.rtp-bar-fill.rtp-med  { background: var(--color-yellow); }
.rtp-bar-fill.rtp-low  { background: var(--color-red); }

/* ============================================================
   VOLATILITY INDICATOR (dots)
   ============================================================ */
.volatility-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vol-label {
  font-size: .72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  margin-right: 2px;
}
.vol-dots { display: flex; gap: 3px; }
.vol-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}
.vol-dot.active { background: var(--color-text-muted); }
.vol-low .vol-dot.active  { background: var(--color-green); }
.vol-med .vol-dot.active  { background: var(--color-yellow); }
.vol-high .vol-dot.active { background: var(--color-red); }
.vol-text { font-size: .85rem; font-weight: 600; margin-left: 4px; }
.vol-text.vol-low-text  { color: var(--color-green); }
.vol-text.vol-med-text  { color: var(--color-yellow); }
.vol-text.vol-high-text { color: var(--color-red); }

/* ============================================================
   GAME INFO TABLE
   ============================================================ */
.game-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.game-info-table {
  width: 100%;
  border-collapse: collapse;
}
.game-info-table tr { border-bottom: 1px solid var(--color-border-light); }
.game-info-table tr:last-child { border-bottom: none; }
.game-info-table td {
  padding: 14px 20px;
  font-size: .95rem;
}
.game-info-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  width: 40%;
  font-size: .85rem;
}
.game-info-table td:last-child {
  color: var(--color-heading);
  font-weight: 600;
}

/* ============================================================
   PROS & CONS
   ============================================================ */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-card, .cons-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.pros-card { border-top: 3px solid var(--color-green); }
.cons-card { border-top: 3px solid var(--color-red); }

.pros-card h3 { color: var(--color-green); margin-bottom: 16px; font-size: 1rem; }
.cons-card h3 { color: var(--color-red); margin-bottom: 16px; font-size: 1rem; }

.pros-card ul, .cons-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros-card li, .cons-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: .93rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pros-card li:last-child, .cons-card li:last-child { border-bottom: none; }
.pros-card li::before { content: "\2713"; color: var(--color-green); font-weight: 700; flex-shrink: 0; }
.cons-card li::before { content: "\2717"; color: var(--color-red); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(var(--color-accent-rgb),0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.feature-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p {
  font-size: .88rem;
  color: var(--color-text-sec);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   CASINO RECOMMENDATION CARDS (Where to Play)
   ============================================================ */
.casino-list { display: flex; flex-direction: column; gap: 14px; }

.casino-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all var(--transition);
  position: relative;
}
.casino-card:hover {
  border-color: rgba(var(--color-accent-rgb),0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.casino-card.top-pick {
  border-color: var(--color-accent);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(var(--color-accent-rgb),0.1);
}

.top-pick-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: var(--shadow-accent);
}

.casino-rank {
  width: 40px;
  height: 40px;
  background: var(--color-bg-card2);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.top-pick .casino-rank {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.casino-logo-ph {
  width: 72px;
  height: 48px;
  background: var(--color-bg-card2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--color-text-muted);
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.casino-logo-ph img { width: 100%; height: 100%; object-fit: contain; }

.casino-info { flex: 1; min-width: 0; }
.casino-name { font-weight: 700; font-size: 1rem; color: var(--color-heading); }
.casino-bonus { font-size: .85rem; color: var(--color-green); font-weight: 600; margin-top: 3px; }
.casino-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.casino-tag {
  background: var(--color-bg-card2);
  color: var(--color-text-sec);
  font-size: .65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.casino-rating { text-align: center; flex-shrink: 0; }
.casino-rating .stars { color: var(--color-gold); font-size: .9rem; display: block; }
.casino-rating .rating-num { font-size: .8rem; color: var(--color-text-muted); }

.casino-cta { flex-shrink: 0; }

/* ============================================================
   REVIEW CONTENT
   ============================================================ */
.review-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.review-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-heading);
}
.review-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.review-content p { color: var(--color-text); }
.review-content a { color: var(--color-accent); }
.review-content a:hover { text-decoration: underline; }

/* ============================================================
   RATING BOX
   ============================================================ */
.rating-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.rating-score {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}
.rating-stars {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin: 8px 0;
  letter-spacing: 4px;
}
.rating-label {
  font-size: .82rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.rating-bars {
  max-width: 400px;
  margin: 0 auto;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}
.rating-bar-name {
  width: 110px;
  font-size: .85rem;
  color: var(--color-text-sec);
  text-align: right;
  font-weight: 500;
}
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--color-bg-card2);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  transition: width 1s ease;
}
.rating-bar-val {
  width: 40px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(var(--color-accent-rgb),0.3); }
.faq-item.open  { border-color: var(--color-accent); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-heading);
  font-size: .95rem;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--color-bg-card2); }
.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--color-bg-card2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-accent);
  transition: all var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: var(--color-accent);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--color-text);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BOTTOM CTA BANNER (dark)
   ============================================================ */
.bottom-cta {
  background: var(--color-heading);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb),0.15) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta h2 {
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: 12px;
  position: relative;
}
.bottom-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
}
.bottom-cta .btn { position: relative; }
.bottom-cta .bottom-terms {
  font-size: .72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #f0f2f5;
  border-top: 1px solid var(--color-border);
  padding: 48px 20px 28px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-logo {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo .accent { color: var(--color-accent); }
.footer-brand p { font-size: .85rem; color: var(--color-text-sec); line-height: 1.6; }

.footer-col h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-heading);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--color-text-sec); font-size: .85rem; }
.footer-col a:hover { color: var(--color-accent); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--color-text-sec);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.responsible-gambling-note {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .78rem;
  color: var(--color-text-sec);
  text-align: center;
  line-height: 1.5;
}
.responsible-gambling-note a { font-weight: 600; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 16px auto 0;
  text-align: center;
  font-size: .78rem;
  color: var(--color-text-muted);
}

/* ============================================================
   PAGE TEMPLATE (legal pages)
   ============================================================ */
.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.page-content h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.page-content h2 {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.page-content a { color: var(--color-accent); }
.page-content a:hover { text-decoration: underline; }

/* ============================================================
   AUTHOR CARD
   ============================================================ */
.slot-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-bg-card, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 32px;
}
.slot-author-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.slot-author-info {
  display: flex;
  flex-direction: column;
}
.slot-author-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.slot-author-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-heading, #2B2D42);
  margin-bottom: 4px;
}
.slot-author-bio {
  font-size: 0.88rem;
  color: var(--color-text-sec, #6b7280);
  line-height: 1.5;
}
@media (max-width: 480px) {
  .slot-author-card { flex-direction: column; text-align: center; padding: 16px; }
  .slot-author-card img { margin: 0 auto; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  text-align: center;
  padding: 100px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.page-404 .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h1 { font-size: 1.5rem; margin-bottom: 12px; }
.page-404 p { color: var(--color-text-muted); margin-bottom: 32px; }

/* ============================================================
   SCHEMA HIDDEN
   ============================================================ */
.schema-hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .hero-image { display: none; }
  .quick-stats-inner { gap: 24px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 20px;
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav li a { display: block; }
  .header-ctas { display: none; }

  .section { padding: 32px 0; }

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

  .casino-card { flex-wrap: wrap; gap: 12px; }
  .casino-info { min-width: 50%; }
  .casino-cta { width: 100%; }
  .casino-cta .btn { width: 100%; }

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

  .review-content { padding: 24px 20px; }
  .rating-box { padding: 28px 20px; }
  .bottom-cta { padding: 36px 24px; }

  .game-info-table td { padding: 10px 14px; font-size: .88rem; }
}

@media (max-width: 480px) {
  .quick-stats-inner { flex-direction: column; gap: 16px; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; }
  .btn-lg { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.quick-stat {
  animation: fadeInUp 0.6s ease forwards;
}
.quick-stat:nth-child(2) { animation-delay: 0.1s; }
.quick-stat:nth-child(3) { animation-delay: 0.2s; }
.quick-stat:nth-child(4) { animation-delay: 0.3s; }
