/* ============================================================
   FlappyRise.com — Main Stylesheet
   Flappy Bird Casino Game | Astriona Crash Game
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --sky-blue-start: #87CEEB;
  --sky-blue-end: #4AA3DF;
  --bg-dark: #1a1a2e;
  --bg-dark-alt: #16213e;
  --bg-panel: #2d2d3d;
  --bg-panel-alt: #1e1e2e;
  --bg-footer: #0d1117;
  --green: #4CAF50;
  --gold: #FFD700;
  --orange: #E67E22;
  --red: #e74c3c;
  --text-body: #e0e0e0;
  --text-header: #ffffff;
  --text-muted: #a0a0a0;
  --border: #3a3a5c;
  --border-light: rgba(255,255,255,0.08);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --header-height: 68px;
  --max-width: 1200px;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-blue-end); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky-blue-start); }
ul, ol { padding-left: 1.5rem; }
h1, h2, h3, h4, h5, h6 { color: var(--text-header); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
strong { color: var(--text-header); }
table { border-collapse: collapse; width: 100%; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(22, 33, 62, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  color: var(--text-header);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.logo-link:hover { color: var(--sky-blue-start); }
.logo-link img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }

.site-nav { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.site-nav a {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav a:visited { color: var(--text-body); }
.site-nav a:hover { background: rgba(255,255,255,0.08); color: var(--text-header); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(76,175,80,0.4);
  flex-shrink: 0;
  white-space: nowrap;
}
.header-cta:hover {
  background: #43a047;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(76,175,80,0.5);
  color: #fff !important;
}

/* Burger */
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  transition: background var(--transition);
}
.burger-btn:hover { background: rgba(255,255,255,0.08); }
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-header);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-dark-alt);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  gap: 0.25rem;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: var(--text-header); }
.mobile-nav .mobile-cta {
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(76,175,80,0.4);
}

/* ============================================================
   STICKY CTA BAR (mobile only)
   ============================================================ */
#stickyCta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  padding: 0.85rem 1.5rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#stickyCta.visible { transform: translateY(0); }
#stickyCta a {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: block;
}
#stickyCta a::after { content: ' →'; }

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}
.section:nth-child(even) { background: var(--bg-dark-alt); }
.section-alt { background: var(--bg-panel-alt); }

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--text-header);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 64px);
  min-height: 520px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/interface/flappy-rise-game-main-screen.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(22,33,62,0.88) 50%, rgba(26,26,46,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1 1 0;
  min-width: 0;
}

.freshness-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.4);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}
.freshness-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 100%;
}
.hero-title .keyword { color: var(--sky-blue-start); }
.hero-title .highlight { color: var(--gold); }

.hero-lead {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-body);
  max-width: 100%;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
  max-width: 100%;
}
.stat-card {
  background: rgba(45,45,61,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition);
}
.stat-card:hover { border-color: var(--sky-blue-end); }
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero CTA buttons */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 24px rgba(76,175,80,0.45);
}
.btn-primary:hover {
  background: #43a047;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(76,175,80,0.55);
  color: #fff;
}
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--text-header);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  color: var(--text-header);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #f0a500);
  color: #1a1a2e;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,0.4);
  color: #1a1a2e;
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }

/* Hero video */
.hero-video-wrap {
  flex: 0 0 42%;
  max-width: 42%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  align-self: center;
}
.hero-video-wrap video { width: 100%; display: block; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  background: var(--bg-panel-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.breadcrumbs li { font-size: 0.85rem; color: var(--text-muted); }
.breadcrumbs li a { color: var(--sky-blue-end); }
.breadcrumbs li a:hover { color: var(--sky-blue-start); }
.breadcrumbs li + li::before { content: ' / '; margin-right: 0.25rem; }

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.toc-box {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sky-blue-end);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}
.toc-box h3 { color: var(--sky-blue-start); margin-bottom: 1rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.toc-box ol { columns: 2; column-gap: 2rem; }
.toc-box li { margin-bottom: 0.4rem; font-size: 0.95rem; break-inside: avoid; }
.toc-box a { color: var(--text-body); }
.toc-box a:hover { color: var(--sky-blue-start); }

/* ============================================================
   SPEC TABLE
   ============================================================ */
.spec-table {
  background: var(--bg-panel);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.spec-table table { width: 100%; }
.spec-table th,
.spec-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.spec-table th {
  background: rgba(74,163,223,0.12);
  color: var(--sky-blue-start);
  font-weight: 600;
  width: 40%;
}
.spec-table td { color: var(--text-body); }
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(255,255,255,0.03); }
.value-highlight { color: var(--gold); font-weight: 700; }
.value-green { color: var(--green); font-weight: 700; }

/* ============================================================
   CASINO CARDS
   ============================================================ */
.casino-cards { display: grid; gap: 1.5rem; }

.casino-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.casino-card:hover {
  border-color: var(--sky-blue-end);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.casino-card.top-pick { border-color: var(--gold); }
.casino-card.top-pick::before {
  content: '⭐ TOP PICK';
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: #1a1a2e;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 0 var(--radius) 0 var(--radius);
  letter-spacing: 0.05em;
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.casino-logo {
  width: 80px;
  height: 50px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  flex-shrink: 0;
}
.casino-info { flex: 1; }
.casino-name { font-size: 1.2rem; font-weight: 700; color: var(--text-header); }
.casino-stars { color: var(--gold); font-size: 1rem; margin: 0.2rem 0; }
.casino-bonus { color: var(--green); font-size: 0.9rem; font-weight: 600; }

.casino-card-body { padding: 1.25rem 1.5rem; }
.casino-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.feature-tag {
  background: rgba(74,163,223,0.12);
  color: var(--sky-blue-start);
  border: 1px solid rgba(74,163,223,0.25);
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}
.pros-cons-col h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.pros-col h5 { color: var(--green); }
.cons-col h5 { color: var(--red); }
.pros-cons-col ul { list-style: none; padding: 0; }
.pros-cons-col ul li { font-size: 0.88rem; padding: 0.2rem 0; color: var(--text-body); }
.pros-col li::before { content: '✓ '; color: var(--green); }
.cons-col li::before { content: '✗ '; color: var(--red); }

.casino-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.promo-code-wrap { display: flex; align-items: center; gap: 0.5rem; }
.promo-label { font-size: 0.78rem; color: var(--text-muted); }
.promo-code {
  background: rgba(255,215,0,0.1);
  border: 1px dashed var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background var(--transition);
}
.promo-code:hover { background: rgba(255,215,0,0.2); }
.copy-btn {
  background: var(--gold);
  color: #1a1a2e;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.copy-btn:hover { background: #f0c000; }
.visit-btn {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(76,175,80,0.35);
}
.visit-btn:hover {
  background: #43a047;
  transform: translateY(-1px);
  color: #fff;
}

/* ============================================================
   RATING STARS
   ============================================================ */
.stars { color: var(--gold); letter-spacing: 0.1em; }
.stars .empty { color: var(--text-muted); }

/* ============================================================
   HOW IT WORKS — Steps
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition);
  position: relative;
}
.step-card:hover { border-color: var(--sky-blue-end); }
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky-blue-end), var(--sky-blue-start));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(74,163,223,0.4);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }

/* ============================================================
   IMAGE GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-size: 0.78rem;
  padding: 0.75rem 0.75rem 0.5rem;
}

/* ============================================================
   WIN CALCULATOR
   ============================================================ */
.calculator {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.calc-field { display: flex; flex-direction: column; gap: 0.4rem; }
.calc-field label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.calc-field input {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-header);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color var(--transition);
  font-family: inherit;
}
.calc-field input:focus { outline: none; border-color: var(--sky-blue-end); }
.calc-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.calc-btn:hover { background: #43a047; transform: translateY(-1px); }
.calc-result {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.25rem;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: var(--radius);
  display: none;
}
.calc-result.show { display: block; }
.calc-result .result-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  display: block;
  margin-bottom: 0.25rem;
}
.calc-result .result-label { font-size: 0.85rem; color: var(--text-muted); }
.calc-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }

/* ============================================================
   STRATEGY CARDS
   ============================================================ */
.strategy-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.strategy-card:hover { border-color: var(--sky-blue-end); }
.strategy-badge {
  display: inline-block;
  background: rgba(74,163,223,0.15);
  color: var(--sky-blue-start);
  border: 1px solid rgba(74,163,223,0.3);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.strategy-badge.conservative { background: rgba(76,175,80,0.12); color: var(--green); border-color: rgba(76,175,80,0.3); }
.strategy-badge.aggressive { background: rgba(230,126,34,0.12); color: var(--orange); border-color: rgba(230,126,34,0.3); }
.strategy-badge.moderate { background: rgba(255,215,0,0.1); color: var(--gold); border-color: rgba(255,215,0,0.3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--sky-blue-end); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sky-blue-end); }
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--text-header); }
.testimonial-meta { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin: 0.2rem 0; }
.testimonial-text { color: var(--text-body); font-size: 0.95rem; line-height: 1.65; font-style: italic; }
.testimonial-text::before { content: '"'; color: var(--sky-blue-start); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.2rem; }

/* ============================================================
   VERDICT SECTION
   ============================================================ */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.verdict-box {
  background: var(--bg-panel);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.verdict-box.pros { border-top: 4px solid var(--green); }
.verdict-box.cons { border-top: 4px solid var(--red); }
.verdict-box h4 { margin-bottom: 1rem; }
.verdict-box.pros h4 { color: var(--green); }
.verdict-box.cons h4 { color: var(--red); }
.verdict-box ul { list-style: none; padding: 0; }
.verdict-box li { padding: 0.4rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.verdict-box li:last-child { border-bottom: none; }
.verdict-box.pros li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.verdict-box.cons li::before { content: '✗ '; color: var(--red); font-weight: 700; }

.final-verdict {
  background: linear-gradient(135deg, rgba(76,175,80,0.1), rgba(74,163,223,0.1));
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.verdict-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.verdict-label { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--sky-blue-end); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-header);
  transition: background var(--transition);
  gap: 1rem;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(74,163,223,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue-start);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(74,163,223,0.3); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================================
   CONTENT IMAGE FLOAT
   ============================================================ */
.content-img-float {
  float: right;
  max-width: 40%;
  margin: 0 0 1.5rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
  background: var(--bg-panel);
  border-radius: var(--radius);
  overflow-x: auto;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.comparison-table table { width: 100%; min-width: 500px; }
.comparison-table th {
  background: rgba(74,163,223,0.12);
  color: var(--sky-blue-start);
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 0.8rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.comparison-table td:first-child { text-align: left; color: var(--text-muted); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.check-yes { color: var(--green); font-weight: 700; }
.check-no { color: var(--red); }

/* ============================================================
   CASINO COMPARISON MATRIX TABLE (sortable)
   ============================================================ */
.matrix-table-wrap {
  background: var(--bg-panel);
  border-radius: var(--radius);
  overflow-x: auto;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
  -webkit-overflow-scrolling: touch;
}
.matrix-table-wrap table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}
.matrix-table-wrap thead th {
  background: rgba(74,163,223,0.12);
  color: var(--sky-blue-start);
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  font-size: 0.88rem;
  position: relative;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.matrix-table-wrap thead th:hover {
  background: rgba(74,163,223,0.2);
}
.matrix-table-wrap thead th:first-child {
  text-align: left;
  padding-left: 1.25rem;
}
.matrix-table-wrap thead th .sort-icon {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.7rem;
  opacity: 0.4;
  vertical-align: middle;
  transition: opacity var(--transition);
}
.matrix-table-wrap thead th.sort-asc .sort-icon,
.matrix-table-wrap thead th.sort-desc .sort-icon {
  opacity: 1;
  color: var(--gold);
}
.matrix-table-wrap tbody td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
  vertical-align: middle;
}
.matrix-table-wrap tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-header);
  padding-left: 1.25rem;
  white-space: nowrap;
}
.matrix-table-wrap tbody tr:last-child td { border-bottom: none; }
.matrix-table-wrap tbody tr:hover td { background: rgba(255,255,255,0.03); }
.matrix-table-wrap tbody tr.matrix-top-pick td {
  background: rgba(255,215,0,0.05);
}
.matrix-table-wrap tbody tr.matrix-top-pick td:first-child::after {
  content: ' #1';
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}
.matrix-table-wrap .matrix-yes {
  color: var(--green);
  font-weight: 600;
}
.matrix-table-wrap .matrix-no {
  color: var(--text-muted);
}
.matrix-table-wrap .matrix-highlight {
  color: var(--gold);
  font-weight: 700;
}
.matrix-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.5rem 0 0;
}
@media (max-width: 860px) {
  .matrix-scroll-hint { display: block; }
}

/* ============================================================
   INFO BOX / ALERT
   ============================================================ */
.info-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.info-box.blue { background: rgba(74,163,223,0.1); border: 1px solid rgba(74,163,223,0.3); }
.info-box.green { background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.3); }
.info-box.orange { background: rgba(230,126,34,0.1); border: 1px solid rgba(230,126,34,0.3); }
.info-box.red { background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); }
.info-box-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.4; }
.info-box p { margin: 0; }

/* ============================================================
   PROMO CODE SECTION
   ============================================================ */
.promo-section {
  background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(74,163,223,0.08));
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.promo-section h3 { color: var(--gold); margin-bottom: 0.75rem; }
.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  font-family: monospace;
  letter-spacing: 0.1em;
  margin: 0.75rem 0;
  cursor: pointer;
}
.copy-promo-btn {
  background: var(--gold);
  color: #1a1a2e;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: block;
  margin: 0.75rem auto 0;
  font-family: inherit;
}
.copy-promo-btn:hover { background: #f0c000; transform: translateY(-1px); }
.copy-promo-btn.copied { background: var(--green); color: #fff; }

/* ============================================================
   UPDATE HISTORY
   ============================================================ */
.update-history {
  background: var(--bg-panel-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.update-history h4 { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
.update-item { display: flex; gap: 1rem; padding: 0.4rem 0; font-size: 0.88rem; border-bottom: 1px solid var(--border-light); }
.update-item:last-child { border-bottom: none; }
.update-date { color: var(--sky-blue-start); font-weight: 600; white-space: nowrap; min-width: 100px; }
.update-desc { color: var(--text-muted); }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: rgba(230,126,34,0.08);
  border: 1px solid rgba(230,126,34,0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 1.5rem 0;
}
.disclaimer strong { color: var(--orange); }

/* ============================================================
   DEMO CONTAINER
   ============================================================ */
.demo-container {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}
.demo-placeholder {
  text-align: center;
  padding: 3rem;
}
.demo-placeholder h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.demo-placeholder p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ============================================================
   AUTHOR CARD
   ============================================================ */
.author-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.author-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--sky-blue-end); flex-shrink: 0; }
.author-name { font-size: 1.4rem; font-weight: 700; color: var(--text-header); }
.author-title { color: var(--sky-blue-start); font-size: 0.9rem; margin: 0.2rem 0 0.75rem; }
.author-bio { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   HERO PAGE (non-index hero)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.25;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,0.95), rgba(26,26,46,0.7));
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo-link { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; color: var(--text-header); font-weight: 800; font-size: 1.1rem; }
.footer-logo-link img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.footer-keyword { color: var(--sky-blue-start); font-weight: 600; }
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--sky-blue-start); }

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.trust-badge {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--transition);
  filter: grayscale(0.3);
}
.trust-badge:hover { opacity: 1; filter: none; }

/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-copyright { font-size: 0.8rem; color: rgba(160,160,160,0.6); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
#cookieConsent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  z-index: 9000;
  box-shadow: var(--shadow);
  display: none;
}
#cookieConsent.show { display: block; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#cookieConsent h4 { margin-bottom: 0.5rem; font-size: 1rem; }
#cookieConsent p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.cookie-btns { display: flex; gap: 0.75rem; }
.cookie-accept {
  flex: 1;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}
.cookie-accept:hover { background: #43a047; }
.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.cookie-decline:hover { border-color: var(--text-muted); color: var(--text-body); }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.clearfix::after { content: ''; display: table; clear: both; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.badge {
  display: inline-block;
  background: rgba(74,163,223,0.15);
  color: var(--sky-blue-start);
  border-radius: 50px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-green { background: rgba(76,175,80,0.15); color: var(--green); }
.badge-gold { background: rgba(255,215,0,0.12); color: var(--gold); }
.badge-orange { background: rgba(230,126,34,0.15); color: var(--orange); }

/* Numbered list style */
.numbered-list { list-style: none; padding: 0; counter-reset: steps; }
.numbered-list li {
  counter-increment: steps;
  padding: 0.85rem 0 0.85rem 3.5rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  font-size: 0.96rem;
}
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--sky-blue-end), var(--sky-blue-start));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 32px;
  text-align: center;
}

/* 404 page */
.page-404 { text-align: center; padding: 6rem 1.5rem; }
.page-404 .error-code { font-size: 8rem; font-weight: 900; color: var(--sky-blue-end); line-height: 1; margin-bottom: 1rem; opacity: 0.5; }
.page-404 h1 { font-size: 2rem; margin-bottom: 1rem; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */


/* Tablet */
@media (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .toc-box ol { columns: 1; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .site-nav,
  .header-cta { display: none; }

  .burger-btn { display: flex; }

  #stickyCta { display: block; }

  .hero { height: auto; min-height: 100svh; max-height: none; }
  .hero-content { flex-direction: column; padding: 5rem 1.25rem 2.5rem; gap: 2rem; }
  .hero-video-wrap { flex: none; max-width: 100%; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .stat-value { font-size: 1.25rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .calc-fields { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }

  /* Float reset for mobile */
  .content-img-float {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }

  .toc-box ol { columns: 1; }
  .toc-box { padding: 1.25rem; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .section { padding: 2.5rem 0; }

  body { padding-bottom: 60px; } /* space for sticky CTA */

  .casino-card-footer { flex-direction: column; }
  .visit-btn { width: 100%; text-align: center; }

  .promo-code-display { font-size: 1rem; }

  .cookie-btns { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .stat-card { padding: 0.75rem; }
  .hero-title { font-size: 1.6rem; }
  .calculator { padding: 1.5rem; }
}

/* Print */
@media print {
  .site-header, .site-footer, #stickyCta, #cookieConsent { display: none; }
  body { background: #fff; color: #000; }
}
