﻿@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg-primary: #08000a;
  --bg-secondary: #0f0010;
  --bg-card: #120014;
  --bg-card-hover: #1a001f;
  --red-primary: #FF0037;
  --red-hot: #FF3355;
  --red-glow: rgba(255,0,55,0.6);
  --red-dim: rgba(255,0,55,0.15);
  --accent-gold: #FFD700;
  --accent-gold-dim: rgba(255,215,0,0.15);
  --text-primary: #FFFFFF;
  --text-secondary: #FFCCD1;
  --text-muted: #7a4a5a;
  --danger: #FF3B55;
  --success: #00E676;
  --border-card: rgba(255,0,55,0.25);
  --border-glow: rgba(255,0,55,0.5);
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-neon: 0 0 20px rgba(255,0,55,0.4), 0 0 60px rgba(255,0,55,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.6);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1280px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: #08000a;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--red-primary);
  color: #fff;
}

::-moz-selection {
  background: var(--red-primary);
  color: #fff;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: -0.2px;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

small {
  font-size: 0.875rem;
}

strong {
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   AFFILIATE BAR
   ============================================================ */
.affiliate-bar {
  background: rgba(255,0,55,0.08);
  border-bottom: 1px solid rgba(255,0,55,0.2);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.affiliate-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.affiliate-bar-inner span {
  color: var(--red-primary);
  font-family: var(--font-display);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255,0,55,0.5);
}

.affiliate-bar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red-primary);
  box-shadow: 0 0 6px var(--red-primary);
  display: inline-block;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,0,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,0,55,0.15);
  height: var(--header-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8,0,10,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 1px 0 rgba(255,0,55,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.header-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-accent {
  color: var(--red-primary);
  text-shadow: 0 0 20px var(--red-primary), 0 0 40px rgba(255,0,55,0.4);
}

.header-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  background: var(--red-dim);
}

.nav-link.active {
  color: #fff;
  background: var(--red-dim);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--red-primary);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--red-primary);
}

.header-cta {
  margin-left: auto;
  flex-shrink: 0;
}

/* ============================================================
   HAMBURGER MENU
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger:hover {
  border-color: var(--red-primary);
  background: var(--red-dim);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  pointer-events: none;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-card);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open {
  pointer-events: all;
}

.mobile-nav.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-card);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid var(--red-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: var(--red-primary);
}

.mobile-nav-links {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--red-dim);
  border-color: var(--border-card);
  color: #fff;
}

.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid var(--border-card);
}

/* ============================================================
   STICKY DOWNLOAD BAR (Mobile)
   ============================================================ */
.sticky-download-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, #1a0008, #0a0010);
  border-top: 1px solid rgba(255,0,55,0.4);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
  display: none;
}

.sticky-download-bar.visible {
  transform: translateY(0);
}

.sticky-bar-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}

.sticky-bar-text span {
  color: var(--red-primary);
  text-shadow: 0 0 10px rgba(255,0,55,0.5);
}

.sticky-bar-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
}

.sticky-bar-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ============================================================
   AGE GATE MODAL
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(255,0,55,0.2), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.age-gate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

.age-gate-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 3px solid var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red-primary);
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(255,0,55,0.3);
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.age-gate-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate-confirm {
  background: var(--red-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(255,0,55,0.5);
}

.age-gate-confirm:hover {
  background: var(--red-hot);
  box-shadow: 0 0 40px rgba(255,0,55,0.8);
  transform: translateY(-2px);
}

.age-gate-deny {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.age-gate-deny:hover {
  color: var(--text-secondary);
  border-color: var(--text-muted);
}

.age-gate-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.exit-popup[style*="flex"] {
  display: flex !important;
}

.exit-popup.show {
  display: flex;
}

.exit-popup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(255,0,55,0.25);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.exit-popup.show .exit-popup-card {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.exit-popup-close:hover {
  background: var(--red-dim);
  border-color: var(--red-primary);
  color: #fff;
}

.exit-popup-offer {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red-primary);
  text-shadow: 0 0 30px rgba(255,0,55,0.6);
  line-height: 1;
  margin-bottom: 8px;
}

.exit-popup-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.exit-popup-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.exit-popup-code {
  background: var(--red-dim);
  border: 1px dashed rgba(255,0,55,0.5);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.exit-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-popup-skip {
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  transition: color 0.2s;
}

.exit-popup-skip:hover {
  color: var(--text-secondary);
}

/* ============================================================
   ALERT STRIP
   ============================================================ */
.alert-strip {
  background: linear-gradient(90deg, rgba(255,0,55,0.15), rgba(255,0,55,0.08), rgba(255,0,55,0.15));
  border-bottom: 1px solid rgba(255,0,55,0.3);
  padding: 10px 0;
  position: relative;
}

.alert-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.alert-strip-icon {
  font-size: 1rem;
}

.alert-strip-text strong {
  color: var(--accent-gold);
}

.alert-strip-cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-primary);
  background: var(--red-dim);
  border: 1px solid rgba(255,0,55,0.3);
  border-radius: 100px;
  padding: 3px 12px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.alert-strip-cta:hover {
  background: var(--red-primary);
  color: #fff;
}

.alert-strip-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.alert-strip-close:hover {
  color: var(--text-secondary);
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  padding: 12px 28px;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-red {
  background: var(--red-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,0,55,0.5);
}

.btn-red:hover {
  background: var(--red-hot);
  box-shadow: 0 0 40px rgba(255,0,55,0.8);
  transform: translateY(-2px);
}

.btn-red:active {
  transform: translateY(0);
  box-shadow: 0 0 20px rgba(255,0,55,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--red-primary);
  border: 2px solid var(--red-primary);
}

.btn-outline:hover {
  background: var(--red-dim);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--accent-gold);
  color: #000;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
}

.btn-gold:hover {
  background: #ffe84d;
  box-shadow: 0 0 40px rgba(255,215,0,0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-xs {
  padding: 5px 12px;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

.btn-icon-only {
  padding: 10px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   SECTION HEADER PATTERN
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-primary);
  background: var(--red-dim);
  border: 1px solid rgba(255,0,55,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   TICKER / MARQUEE BAR
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 14px 0;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-card), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-card), transparent);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0 4px;
}

.ticker-item-icon {
  font-size: 1.1rem;
}

.ticker-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
}

.ticker-divider {
  width: 1px;
  height: 16px;
  background: var(--border-card);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,55,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,0,55,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-stripe {
  position: absolute;
  top: 0;
  right: 40%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,0,55,0.4), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-stripe-2 {
  position: absolute;
  top: 0;
  right: 38%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,0,55,0.15), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-right: 40px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(255,0,55,0.1);
  border: 1px solid rgba(255,0,55,0.35);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.hero-title .highlight {
  color: var(--red-primary);
  text-shadow: 0 0 30px rgba(255,0,55,0.7), 0 0 60px rgba(255,0,55,0.3);
}

.hero-title-sub {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 20px 0 32px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-badge-icon {
  font-size: 1rem;
}

.hero-stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red-primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,0,55,0.5);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Floating stat cards */
.hero-float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stat-float {
  position: absolute;
  background: rgba(18,0,20,0.92);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  pointer-events: none;
}

.hero-stat-float:nth-child(1) {
  top: 15%;
  left: -40px;
  animation: floatCard1 5s ease-in-out infinite;
}

.hero-stat-float:nth-child(2) {
  bottom: 20%;
  left: -50px;
  animation: floatCard2 5s ease-in-out 2.5s infinite;
}

.float-stat-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red-primary);
  display: block;
  text-shadow: 0 0 15px rgba(255,0,55,0.6);
}

.float-stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.phone-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.phone-mockup {
  width: 240px;
  height: 480px;
  background: linear-gradient(145deg, #1a0020, #0a000f);
  border: 2px solid rgba(255,0,55,0.4);
  border-radius: 36px;
  box-shadow: 0 0 60px rgba(255,0,55,0.3), 0 0 120px rgba(255,0,55,0.1), inset 0 0 20px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  animation: floatPhone 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 8px 12px;
  height: calc(100% - 40px);
  overflow: hidden;
}

.phone-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.phone-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-primary);
  text-shadow: 0 0 10px rgba(255,0,55,0.6);
}

.phone-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: var(--success);
  font-weight: 600;
}

.phone-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 5px var(--success);
}

.phone-balance {
  text-align: center;
  margin-bottom: 14px;
  background: rgba(255,0,55,0.06);
  border: 1px solid rgba(255,0,55,0.15);
  border-radius: 10px;
  padding: 10px;
}

.phone-balance-label {
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.phone-balance-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255,215,0,0.5);
  display: block;
}

.phone-game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.phone-game-tile {
  background: rgba(255,0,55,0.08);
  border: 1px solid rgba(255,0,55,0.2);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: background 0.2s;
}

.phone-game-tile:hover {
  background: rgba(255,0,55,0.15);
}

.phone-game-emoji {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}

.phone-withdraw-btn {
  width: 100%;
  background: var(--red-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255,0,55,0.4);
  transition: var(--transition);
}

.phone-withdraw-btn:hover {
  box-shadow: 0 0 25px rgba(255,0,55,0.7);
}

.phone-screen-shine {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Phone glow rings */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,0,55,0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.ring-1 {
  width: 320px;
  height: 320px;
  animation: expandRing 2.5s ease-out infinite;
}

.ring-2 {
  width: 320px;
  height: 320px;
  animation: expandRing 2.5s ease-out 1.25s infinite;
}

.ring-3 {
  width: 440px;
  height: 440px;
  border-color: rgba(255,0,55,0.1);
  animation: expandRing 3.5s ease-out 0.5s infinite;
}

@keyframes expandRing {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

/* ============================================================
   GAME CARDS
   ============================================================ */
.games-section {
  padding: 100px 0;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-card);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--red-dim);
  border-color: var(--red-primary);
  color: #fff;
}

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

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.countdown-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  text-align: center;
}

.countdown-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.countdown-unit {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 70px;
  position: relative;
  overflow: hidden;
}

.countdown-unit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-primary);
  text-shadow: 0 0 20px rgba(255,0,55,0.5);
  display: block;
  line-height: 1.1;
}

.countdown-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-primary);
  align-self: flex-start;
  padding-top: 12px;
  opacity: 0.6;
  animation: sepBlink 1s step-end infinite;
}

@keyframes sepBlink {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.1; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dim), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red-primary);
  text-shadow: 0 0 30px rgba(255,0,55,0.6);
  display: block;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stat-suffix {
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 10px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--red-primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-4px);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-primary), var(--accent-gold));
  transition: width 0.4s ease;
}

.feature-card:hover::after {
  width: 100%;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--red-dim);
  border: 1px solid rgba(255,0,55,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(255,0,55,0.25);
  box-shadow: 0 0 20px rgba(255,0,55,0.2);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.bonus-card.featured {
  border-color: var(--accent-gold);
  box-shadow: 0 0 40px rgba(255,215,0,0.15);
}

.bonus-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}

.bonus-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.bonus-card.featured:hover {
  box-shadow: var(--shadow-neon), 0 0 40px rgba(255,215,0,0.1);
}

.bonus-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red-primary);
  text-shadow: 0 0 20px rgba(255,0,55,0.5);
  display: block;
  line-height: 1;
}

.bonus-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 10px 0 10px;
}

.bonus-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.bonus-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.bonus-feature::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.bonus-terms {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.bonus-terms a {
  color: var(--red-primary);
}

/* ============================================================
   REFERRAL SECTION
   ============================================================ */
.referral-section {
  padding: 100px 0;
}

.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.referral-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ref-step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red-dim);
  border: 2px solid var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--red-primary);
}

.ref-step-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ref-step-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.earnings-calc {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.calc-input-group {
  margin-bottom: 20px;
}

.calc-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.calc-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.calc-input:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px var(--red-dim);
}

.calc-result {
  background: var(--red-dim);
  border: 1px solid rgba(255,0,55,0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.calc-result-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.calc-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red-primary);
  text-shadow: 0 0 20px rgba(255,0,55,0.5);
  display: block;
}

.calc-amount-suffix {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 4px;
  display: block;
  font-size: 0.85rem;
}

/* ============================================================
   LEADERBOARD TABLE
   ============================================================ */
.leaderboard-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.leaderboard-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

.leaderboard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  min-width: 600px;
}

.leaderboard-table th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 16px 8px;
  text-align: left;
  white-space: nowrap;
}

.leaderboard-table tr.lb-row td {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 16px;
  transition: background 0.2s;
  vertical-align: middle;
}

.leaderboard-table tr.lb-row:hover td {
  background: var(--bg-card-hover);
}

.leaderboard-table tr.lb-row td:first-child {
  border-left: 1px solid var(--border-card);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.leaderboard-table tr.lb-row td:last-child {
  border-right: 1px solid var(--border-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.lb-rank {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lb-rank.gold {
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255,215,0,0.5);
}

.lb-rank.silver {
  color: #C0C0C0;
}

.lb-rank.bronze {
  color: #CD7F32;
}

.lb-player {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lb-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red-primary);
  flex-shrink: 0;
}

.lb-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.lb-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.lb-winnings {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red-primary);
  text-shadow: 0 0 10px rgba(255,0,55,0.4);
}

.lb-games {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 100px 0;
}

.faq-search-wrap {
  margin-bottom: 32px;
}

.faq-search {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: block;
}

.faq-search:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px var(--red-dim);
}

.faq-search::placeholder {
  color: var(--text-muted);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--red-primary);
  box-shadow: 0 0 20px rgba(255,0,55,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  -webkit-user-select: none;
  gap: 16px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  outline: none;
}

.faq-question:hover {
  color: #fff;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, border-color 0.3s;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red-dim);
  border-color: var(--red-primary);
  color: var(--red-primary);
}

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

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-card);
  padding-top: 16px;
}

.faq-answer-inner a {
  color: var(--red-primary);
  text-decoration: underline;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card-hover));
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.blog-card-body {
  padding: 20px;
}

.blog-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-primary);
  background: var(--red-dim);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-title {
  color: #fff;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(255,0,55,0.2) 0%, transparent 70%), var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(255,0,55,0.02) 40px,
    rgba(255,0,55,0.02) 41px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,0,55,0.02) 40px,
    rgba(255,0,55,0.02) 41px
  );
  pointer-events: none;
}

.cta-banner-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cta-banner-title .highlight {
  color: var(--red-primary);
  text-shadow: 0 0 30px rgba(255,0,55,0.6);
}

.cta-banner-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner-disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050008;
  border-top: 1px solid var(--border-card);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 16px;
  max-width: 340px;
}

.age-badge {
  display: inline-block;
  background: var(--red-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 4px 14px;
  border-radius: 100px;
  margin-top: 4px;
  box-shadow: 0 0 15px rgba(255,0,55,0.4);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--red-dim);
  border-color: var(--red-primary);
  color: #fff;
}

.footer-disclaimers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.disclaimer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.disclaimer-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--transition);
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--red-primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-4px);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.game-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}

.game-card-body {
  padding: 14px;
}

.game-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.game-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-card-rtp {
  color: var(--success);
  font-weight: 600;
}

.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 3;
  text-transform: uppercase;
}

.badge-hot {
  background: var(--red-primary);
  color: #fff;
  box-shadow: 0 0 10px rgba(255,0,55,0.5);
}

.badge-new {
  background: var(--accent-gold);
  color: #000;
}

.badge-live {
  background: var(--success);
  color: #000;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 5px rgba(0,230,118,0.5); }
  50% { box-shadow: 0 0 15px rgba(0,230,118,0.8); }
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,0,55,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 5;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-overlay-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   DOWNLOAD STEPS
   ============================================================ */
.download-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.download-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.download-step:hover {
  border-color: var(--red-primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-4px);
}

.download-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 0;
  background: var(--red-primary);
  transition: height 0.4s ease;
}

.download-step:hover::before {
  height: 100%;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--red-dim);
  border: 2px solid var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red-primary);
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(255,0,55,0.2);
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.download-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--red-primary);
  z-index: 1;
}

/* ============================================================
   GAME DETAIL PAGE
   ============================================================ */
.gp-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
}

.gp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,0,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.gp-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.gp-hero-thumb {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  flex-shrink: 0;
}

.gp-hero-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.gp-hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.gp-stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.gp-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 0.82rem;
}

.gp-stat-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.gp-stat-val {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red-primary);
  font-size: 1rem;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 32px;
  gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-secondary);
}

.tab-btn.active {
  color: var(--red-primary);
  border-bottom-color: var(--red-primary);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-label .required {
  color: var(--red-primary);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px var(--red-dim);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a4a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-input.error,
.form-textarea.error {
  border-color: var(--danger);
}

.form-input.success,
.form-textarea.success {
  border-color: var(--success);
}

.form-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.form-success {
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--success);
  font-weight: 600;
  display: none;
  font-size: 0.92rem;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sitemap-group h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-card);
}

.sitemap-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-group ul li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sitemap-group ul li a::before {
  content: '→';
  color: var(--red-primary);
  font-size: 0.75rem;
  opacity: 0.6;
}

.sitemap-group ul li a:hover {
  color: #fff;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--red-primary);
  text-shadow: 0 0 80px rgba(255,0,55,0.6), 0 0 160px rgba(255,0,55,0.3);
  line-height: 1;
  margin-bottom: 4px;
}

.error-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.error-desc {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1rem;
  max-width: 440px;
}

.error-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   STATIC PAGES (Terms, Privacy, Responsible Gaming, About, Disclaimer)
   ============================================================ */
.static-page {
  padding: 80px 0;
}

.static-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.static-page .last-updated {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 40px;
  display: block;
}

.static-content {
  max-width: 800px;
}

.static-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--red-primary);
}

.static-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 24px 0 10px;
}

.static-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.static-content ul,
.static-content ol {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.static-content li {
  margin-bottom: 6px;
}

.static-content a {
  color: var(--red-primary);
  transition: opacity 0.2s;
}

.static-content a:hover {
  opacity: 0.8;
}

.warning-box {
  background: rgba(255,59,85,0.08);
  border: 1px solid rgba(255,59,85,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.warning-box-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.warning-box-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-box {
  background: var(--red-dim);
  border: 1px solid rgba(255,0,55,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p {
  margin-bottom: 0;
}

.responsible-gaming-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.rg-tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
}

.rg-tool-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.rg-tool-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.blog-post-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-card);
}

.blog-post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.blog-post-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
}

.blog-post-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 28px 0 12px;
}

.blog-post-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.blog-post-content ul,
.blog-post-content ol {
  color: var(--text-secondary);
  line-height: 1.9;
  padding-left: 28px;
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--red-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--red-dim);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.post-cta-box {
  background: linear-gradient(135deg, rgba(255,0,55,0.1), rgba(255,0,55,0.04));
  border: 1px solid rgba(255,0,55,0.3);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.post-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.post-cta-box p {
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 2px solid var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 12px;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-sep {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-red { color: var(--red-primary); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: #fff; }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

.pt-0  { padding-top: 0 !important; }
.pb-0  { padding-bottom: 0 !important; }

.section     { padding: 100px 0; }
.section-sm  { padding: 60px 0; }
.section-lg  { padding: 140px 0; }

.hidden  { display: none !important; }
.visible { visibility: visible; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--red-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-display);
  z-index: 9999;
  transition: top 0.2s;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 16px;
}

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

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-scroll {
  overflow: hidden;
}

.divider {
  border: none;
  border-top: 1px solid var(--border-card);
  margin: 40px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.tag-red {
  background: var(--red-dim);
  color: var(--red-primary);
  border: 1px solid rgba(255,0,55,0.25);
}

.tag-gold {
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
  border: 1px solid rgba(255,215,0,0.25);
}

.tag-green {
  background: rgba(0,230,118,0.1);
  color: var(--success);
  border: 1px solid rgba(0,230,118,0.25);
}

/* Neon text effect */
.neon-text {
  color: var(--red-primary);
  text-shadow: 0 0 20px rgba(255,0,55,0.7), 0 0 40px rgba(255,0,55,0.4);
}

.gold-text {
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255,0,55,0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,0,55,0.5);
}

/* Loading spinner */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border-card);
  border-top-color: var(--red-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 600;
  pointer-events: all;
  animation: slideInToast 0.3s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
  box-shadow: var(--shadow-card);
}

.toast.success {
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.08);
}

.toast.error {
  border-color: rgba(255,0,55,0.4);
  background: var(--red-dim);
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

/* 1200px - reduce gaps, smaller headings */
@media (max-width: 1200px) {
  :root {
    --container-max: 100%;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }

  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }

  .stats-grid { gap: 16px; }
  .features-grid { gap: 16px; }
  .bonus-grid { gap: 16px; }
  .blog-grid { gap: 16px; }
  .footer-grid { gap: 28px; }

  .stat-number { font-size: 2.5rem; }
  .error-code { font-size: clamp(5rem, 12vw, 8rem); }
}

/* 1024px - switch 4-col to 2-col, reduce hero padding */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 0 60px;
    gap: 32px;
  }

  .hero-content { padding-right: 20px; }

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

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

  .gp-hero-inner {
    grid-template-columns: 1fr;
  }

  .gp-hero-thumb {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }

  .download-steps {
    gap: 16px;
  }

  .referral-grid {
    gap: 32px;
  }

  .contact-grid {
    gap: 40px;
  }

  .hero-stat-float:nth-child(1),
  .hero-stat-float:nth-child(2) {
    display: none;
  }
}

/* 960px - footer 2x2 */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

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

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

  .referral-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* 768px - mobile nav, single-col hero, 2-col grids */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-nav { display: none; }
  .header-cta { display: none; }

  .sticky-download-bar { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 0 60px;
    text-align: left;
    min-height: auto;
  }

  .hero-visual { display: none; }

  .hero-title { font-size: clamp(2.2rem, 7vw, 3rem); }
  .hero-title-sub { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }

  .trust-badges { gap: 10px; }
  .trust-badge { font-size: 0.78rem; padding: 8px 12px; }

  .section-title { font-size: 1.9rem; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .download-steps { grid-template-columns: 1fr 1fr; }

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

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

  .leaderboard-table-wrap { border-radius: var(--radius-md); }

  .cta-banner { padding: 60px 0; }
  .cta-banner-title { font-size: clamp(1.8rem, 5vw, 2.4rem); }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .gp-stats-row { gap: 10px; }

  .countdown-wrap { gap: 10px; }
  .countdown-unit { min-width: 60px; padding: 12px 14px; }
  .countdown-num { font-size: 1.6rem; }

  .responsible-gaming-tools { grid-template-columns: 1fr; }

  .age-gate-card { padding: 32px 24px; }
  .exit-popup-card { padding: 32px 24px; }
}

/* 640px - stats 2-col, features 1-col, bonus 1-col, download 1-col */
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

  .download-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section { padding: 70px 0; }
  .section-sm { padding: 44px 0; }

  .hero-stats-row { gap: 16px; }
  .hero-stat-num { font-size: 1.3rem; }

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

  .phone-mockup-wrap { display: none; }

  .gp-hero-inner { gap: 20px; }

  .stat-card { padding: 28px 16px; }
  .stat-number { font-size: 2.2rem; }

  .tab-btn { padding: 10px 14px; font-size: 0.82rem; }

  .earnings-calc { padding: 24px; }

  .bonus-card { padding: 24px; }
  .bonus-amount { font-size: 2rem; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* 480px - blog 1-col, reduced hero padding, phone scale down */
@media (max-width: 480px) {
  html { font-size: 15px; }

  .container { padding-left: 16px; padding-right: 16px; }

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

  .hero { padding: 90px 0 50px; }

  .hero-title { font-size: 2rem; }
  .hero-title-sub { font-size: 1.5rem; }
  .hero-subtitle { font-size: 1rem; }

  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: 0.95rem; }

  .btn-lg { padding: 14px 28px; font-size: 1rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 24px 14px; }
  .stat-number { font-size: 2rem; }
  .stat-icon { font-size: 1.5rem; }

  .faq-question { font-size: 0.95rem; padding: 16px 18px; }
  .faq-answer-inner { padding: 0 18px 16px; padding-top: 12px; }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .ring-1, .ring-2 { width: 260px; height: 260px; }
  .ring-3 { width: 360px; height: 360px; }

  .cta-banner { padding: 50px 0; }

  .age-gate-card { padding: 28px 20px; }
  .age-gate-badge { width: 64px; height: 64px; font-size: 1.4rem; }
  .age-gate-title { font-size: 1.5rem; }

  .exit-popup-card { padding: 28px 20px; }
  .exit-popup-offer { font-size: 2.2rem; }
  .exit-popup-title { font-size: 1.3rem; }

  .footer-social { gap: 8px; }

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

  .hero-cta-group .btn { font-size: 0.9rem; padding: 12px 20px; }
}

/* 360px - minimum width support, single-col everything */
@media (max-width: 360px) {
  html { font-size: 14px; }

  .container { padding-left: 14px; padding-right: 14px; }

  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.55rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 20px 10px; }
  .stat-number { font-size: 1.8rem; }

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

  .btn-lg { padding: 13px 22px; font-size: 0.95rem; }

  .countdown-unit { padding: 10px 10px; min-width: 50px; }
  .countdown-num { font-size: 1.4rem; }

  .logo-text { font-size: 1.5rem; }

  .download-steps { gap: 12px; }
  .download-step { padding: 24px 18px; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-disclaimers { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-direction: column; gap: 10px; }

  .tab-btn { padding: 8px 10px; font-size: 0.78rem; }

  .trust-badge { padding: 6px 10px; font-size: 0.72rem; }

  .error-code { font-size: 5rem; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .affiliate-bar,
  .sticky-download-bar,
  .age-gate,
  .exit-popup,
  .mobile-nav,
  .alert-strip,
  .cta-banner,
  .site-footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}

/* ============================================================
   ANIMATIONS (global keyframes)
   ============================================================ */
@keyframes borderScan {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,0,55,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,0,55,0.6), 0 0 80px rgba(255,0,55,0.2); }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animate-glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
}

.animate-scale-in {
  animation: scaleIn 0.3s cubic-bezier(0.4,0,0.2,1) both;
}

.animate-slide-up {
  animation: slideUp 0.4s cubic-bezier(0.4,0,0.2,1) both;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   COMPATIBILITY PATCH — fixes HTML/CSS class name mismatches
   ============================================================ */

/* Hero layout: .hero-container is the actual 2-col grid */
.hero {
  display: block;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,55,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
  z-index: 1;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.hero-mockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger: HTML uses <span> not .hamburger-line */
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Overlay: HTML uses .nav-overlay, not .mobile-nav */
.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-card);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.nav-overlay.open {
  transform: translateX(0);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}
.nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid var(--red-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  align-self: flex-end;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.nav-close:hover {
  background: var(--red-primary);
}
.nav-overlay-brand {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-card);
}
.nav-overlay-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  margin-bottom: 20px;
}
.nav-overlay-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-overlay-link:hover,
.nav-overlay-link.active {
  background: var(--red-dim);
  border-color: var(--border-card);
  color: #fff;
}
.nav-overlay-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-card);
}

/* Sticky Bar: HTML uses .sticky-bar, not .sticky-download-bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, #1a0008, #0a0010);
  border-top: 1px solid rgba(255,0,55,0.4);
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
}
.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Age Gate: HTML uses .age-gate-overlay, .age-gate-buttons */
.age-gate-overlay {
  position: absolute;
  inset: 0;
}
.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 12px;
}

/* Exit Popup: HTML uses .popup-close and .exit-popup-badge */
.exit-popup-overlay {
  position: absolute;
  inset: 0;
}
.exit-popup-badge {
  display: inline-block;
  background: var(--red-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(255,0,55,0.5);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.popup-close:hover {
  background: var(--red-dim);
  border-color: var(--red-primary);
  color: #fff;
}

/* Alert Strip: HTML uses .alert-icon, .alert-text, .alert-dismiss, .alert-countdown */
.alert-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.alert-text strong {
  color: var(--accent-gold);
}
.alert-countdown {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red-primary);
  font-size: 0.9rem;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255,0,55,0.5);
}
.alert-dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s;
}
.alert-dismiss:hover {
  color: var(--text-secondary);
}

/* Hero eyebrow dot */
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: livePulse 2s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* Hero floating stat card explicit classes */
.hero-stat-float-1 {
  top: 15%;
  left: -40px;
  animation: floatCard1 5s ease-in-out infinite;
}
.hero-stat-float-2 {
  bottom: 20%;
  left: -50px;
  animation: floatCard2 5s ease-in-out 2.5s infinite;
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--red-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 800;
  box-shadow: 0 0 20px rgba(255,0,55,0.4);
  transform: translateY(100px);
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}
.scroll-top-btn.visible {
  transform: translateY(0);
  opacity: 1;
}
.scroll-top-btn:hover {
  background: var(--red-hot);
  box-shadow: 0 0 30px rgba(255,0,55,0.6);
}

/* ============================================================
   RESPONSIVE OVERRIDES (patch)
   ============================================================ */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-container {
    grid-template-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: auto;
    gap: 32px;
  }
  .hero-mockup { display: none; }
  .hero-content { padding-right: 0; }
}
@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .nav-overlay { display: none !important; }
}

/* ============================================================
   AFFILIATE BAR — container-based layout fix
   ============================================================ */
.affiliate-bar {
  height: auto !important;
  min-height: 36px;
  padding: 7px 0;
}
.affiliate-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  flex-wrap: wrap;
  gap: 4px;
}
.affiliate-bar .container strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-primary);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 20px rgba(255,0,55,0.4);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--red-hot);
  box-shadow: 0 0 24px rgba(255,0,55,0.7);
}

/* ============================================================
   HEADER REDESIGN — CANONICAL (overrides all prior header CSS)
   ============================================================ */

/* -- Core header -- */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  height: var(--header-height) !important;
  background: rgba(8,0,10,0.92) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(255,0,55,0.18) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}
.site-header.scrolled {
  background: rgba(8,0,10,0.98) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.7), 0 1px 0 rgba(255,0,55,0.2) !important;
}
.site-header.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.35s ease, background 0.3s ease !important;
}

/* -- Header inner layout -- */
.header-inner {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  gap: 0 !important;
}

/* -- Logo -- */
.site-header .logo {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  margin-right: 24px !important;
  text-decoration: none !important;
}
.site-header .logo-text {
  font-family: var(--font-display) !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}
.site-header .logo-accent {
  color: var(--red-primary) !important;
  text-shadow: 0 0 14px rgba(255,0,55,0.65) !important;
}

/* -- Desktop navigation -- */
.main-nav {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}
.main-nav .nav-list {
  display: flex !important;
  align-items: center !important;
  gap: 1px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nav-link {
  position: relative !important;
  display: block !important;
  padding: 7px 10px !important;
  font-family: var(--font-display) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.70) !important;
  text-decoration: none !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  border-radius: 5px !important;
  transition: color 0.2s ease, background 0.2s ease !important;
  line-height: 1.2 !important;
}
.nav-link::before { display: none !important; }
.nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 3px !important;
  left: 50% !important;
  transform: translateX(-50%) scaleX(0) !important;
  width: 55% !important;
  height: 2px !important;
  background: var(--red-primary) !important;
  border-radius: 2px !important;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1) !important;
  transform-origin: center !important;
}
.nav-link:hover {
  color: #fff !important;
  background: rgba(255,0,55,0.07) !important;
  text-shadow: none !important;
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1) !important;
}
.nav-link.active {
  color: var(--red-primary) !important;
  background: rgba(255,0,55,0.06) !important;
}
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1) !important;
  box-shadow: 0 0 7px rgba(255,0,55,0.45) !important;
}

/* -- Header actions (CTA + hamburger wrapper) -- */
.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
}

/* -- CTA button -- */
.header-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: var(--font-display) !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  margin-left: 0 !important;
}

/* -- Hamburger button -- */
.hamburger {
  display: none;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.hamburger:hover {
  background: rgba(255,0,55,0.1) !important;
  border-color: rgba(255,0,55,0.35) !important;
}
.hamburger span {
  display: block !important;
  width: 18px !important;
  height: 2px !important;
  background: #fff !important;
  border-radius: 2px !important;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s, width 0.2s !important;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
.hamburger.open span:nth-child(2) { opacity: 0 !important; width: 0 !important; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

/* ============================================================
   MOBILE NAV OVERLAY — Full redesign with panel + backdrop
   ============================================================ */
.nav-overlay {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 1100 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transform: none !important;
  transition: none !important;
  padding: 0 !important;
  flex-direction: unset !important;
  overflow: visible !important;
  top: 0 !important;
  right: 0 !important;
}
.nav-overlay.open {
  pointer-events: all !important;
  visibility: visible !important;
}

/* Backdrop */
.nav-overlay-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.72) !important;
  opacity: 0 !important;
  transition: opacity 0.35s ease !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
}
.nav-overlay.open .nav-overlay-backdrop {
  opacity: 1 !important;
}

/* Sliding panel */
.nav-overlay-panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(340px, 90vw) !important;
  height: 100% !important;
  background: linear-gradient(160deg, #130010 0%, #080010 100%) !important;
  border-left: 1px solid rgba(255,0,55,0.18) !important;
  box-shadow: -8px 0 40px rgba(0,0,0,0.85) !important;
  transform: translateX(100%) !important;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
.nav-overlay.open .nav-overlay-panel {
  transform: translateX(0) !important;
}

/* Panel header */
.nav-overlay-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 20px !important;
  border-bottom: 1px solid rgba(255,0,55,0.12) !important;
  flex-shrink: 0 !important;
}
.nav-overlay-head .logo {
  text-decoration: none !important;
  margin-right: 0 !important;
}

/* Hide old brand element if still present */
.nav-overlay-brand { display: none !important; }

/* Close button */
.nav-close {
  position: static !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.75) !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.2s, border-color 0.2s !important;
  top: auto !important;
  right: auto !important;
  padding: 0 !important;
}
.nav-close:hover {
  background: rgba(255,0,55,0.12) !important;
  border-color: rgba(255,0,55,0.35) !important;
  color: #fff !important;
}

/* Nav links in overlay */
.nav-overlay-list {
  list-style: none !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  flex: 1 !important;
}
.nav-overlay-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 11px 20px !important;
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  letter-spacing: 0.3px !important;
  border-left: 3px solid transparent !important;
  transition: color 0.2s, background 0.2s, border-color 0.2s, padding-left 0.2s !important;
}
.nav-overlay-link:hover {
  color: #fff !important;
  background: rgba(255,0,55,0.07) !important;
  border-left-color: var(--red-primary) !important;
  padding-left: 26px !important;
}
.nav-overlay-link.active {
  color: var(--red-primary) !important;
  background: rgba(255,0,55,0.06) !important;
  border-left-color: var(--red-primary) !important;
}

/* CTA + disclaimer */
.nav-overlay-cta {
  padding: 16px 20px !important;
  border-top: 1px solid rgba(255,0,55,0.12) !important;
  flex-shrink: 0 !important;
}
.nav-overlay-play {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  font-family: var(--font-display) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  padding: 13px 20px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
}
.nav-overlay-disclaimer {
  padding: 10px 20px 18px !important;
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  color: rgba(255,255,255,0.28) !important;
  text-align: center !important;
  line-height: 1.5 !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

/* ============================================================
   HEADER RESPONSIVE — New breakpoints
   ============================================================ */
@media (max-width: 1100px) {
  .main-nav { display: none !important; }
  .hamburger { display: flex !important; }
}
@media (min-width: 1101px) {
  .hamburger { display: none !important; }
}
@media (max-width: 520px) {
  .header-cta { display: none !important; }
}

/* ============================================================
   TYPOGRAPHY & SPACING — Global Improvements
   ============================================================ */

/* -- Base heading rhythm: every heading gets bottom margin --
   Using em so it scales with font-size automatically        */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.18;
  margin-bottom: 0.45em;
}
h1 { line-height: 1.1; margin-bottom: 0.35em; }
h2 { line-height: 1.15; margin-bottom: 0.4em; }
h3 { line-height: 1.18; margin-bottom: 0.45em; }
h4, h5, h6 { line-height: 1.25; margin-bottom: 0.4em; }

/* -- Paragraph rhythm --
   Add margin below paragraphs; reset on last-child         */
p {
  line-height: 1.78;
  margin-bottom: 1.1em;
}
p:last-child { margin-bottom: 0; }

/* -- List item spacing -- */
li { line-height: 1.65; }

/* ============================================================
   HERO SECTION — Fix extreme tightness
   ============================================================ */
.hero-eyebrow {
  margin-bottom: 22px !important;
}
.hero-title {
  line-height: 1.08 !important;
  margin-bottom: 14px !important;
}
.hero-title-sub {
  margin-bottom: 22px !important;
  line-height: 1.15 !important;
}
/* Paragraph inside hero content */
.hero-content > p,
.hero-content .hero-desc {
  font-size: 1.08rem;
  line-height: 1.78;
  margin-bottom: 32px;
  color: var(--text-secondary);
}
.hero-actions {
  gap: 16px !important;
  margin-bottom: 36px !important;
}
.trust-badges {
  gap: 12px !important;
  margin-bottom: 28px !important;
}
.hero-stats-row {
  gap: 28px !important;
  margin-top: 8px;
}

/* ============================================================
   SECTION HEADERS — More breathing room
   ============================================================ */
.section-eyebrow {
  margin-bottom: 20px !important;
}
.section-title {
  font-size: clamp(1.95rem, 3.2vw, 2.6rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.2px !important;
}
.section-subtitle {
  font-size: 1.06rem !important;
  line-height: 1.78 !important;
  max-width: 590px !important;
}
.section-header {
  margin-bottom: 56px !important;
}
.section-header.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAGE HERO — Inner pages
   ============================================================ */
.page-hero {
  padding: 80px 0 72px !important;
}
.page-hero-title {
  font-size: clamp(2.1rem, 4vw, 3.1rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 18px !important;
}
.page-hero-subtitle {
  font-size: 1.08rem !important;
  line-height: 1.78 !important;
  margin-top: 0 !important;
  max-width: 640px;
}
/* Breadcrumb separation from hero title */
.breadcrumb, .breadcrumb-list {
  margin-bottom: 24px;
}

/* ============================================================
   CARD COMPONENTS — Better internal padding & spacing
   ============================================================ */

/* Feature cards */
.feature-card {
  padding: 36px 28px !important;
}
.feature-icon {
  margin-bottom: 24px !important;
}
.feature-title {
  font-size: 1.2rem !important;
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
}
.feature-desc,
.feature-card p {
  font-size: 0.96rem;
  line-height: 1.72;
  margin-bottom: 0;
}

/* Blog cards */
.blog-card-body {
  padding: 24px !important;
}
.blog-card-title {
  line-height: 1.35 !important;
  margin-bottom: 10px !important;
}
.blog-card-excerpt,
.blog-card p {
  line-height: 1.7;
  margin-bottom: 0;
}

/* Game cards */
.game-card-body {
  padding: 16px !important;
}
.game-card-name {
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
}

/* General card pattern */
.card {
  padding: 28px !important;
}

/* ============================================================
   FAQ — Better spacing
   ============================================================ */
.faq-list {
  gap: 12px !important;
}
.faq-question {
  padding: 22px 24px !important;
  font-size: 1.05rem !important;
  line-height: 1.4 !important;
}
.faq-answer-inner {
  padding: 20px 24px 24px !important;
  font-size: 0.97rem !important;
  line-height: 1.78 !important;
}

/* ============================================================
   FOOTER — Improved readability
   ============================================================ */
.footer-brand p {
  line-height: 1.75 !important;
  margin-top: 14px !important;
  margin-bottom: 18px !important;
  font-size: 0.9rem !important;
}
.footer-col h4 {
  margin-bottom: 22px !important;
  font-size: 0.84rem !important;
  letter-spacing: 2px !important;
}
.footer-col ul {
  gap: 12px !important;
}
.footer-col ul li a {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}
.footer-disclaimers {
  gap: 16px !important;
  margin-bottom: 36px !important;
}
.disclaimer-card {
  padding: 18px 22px !important;
  gap: 14px !important;
}
.disclaimer-card p {
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}
.footer-bottom {
  padding: 24px 0 !important;
  gap: 8px !important;
}
.footer-grid {
  gap: 48px !important;
  margin-bottom: 56px !important;
}

/* ============================================================
   BLOG / ARTICLE CONTENT — Long-form reading
   ============================================================ */
.blog-post-content,
.post-content,
.article-body,
.prose {
  font-size: 1.02rem;
  line-height: 1.85;
}
.blog-post-content p,
.post-content p,
.article-body p,
.prose p {
  margin-bottom: 1.35em;
  line-height: 1.85;
}
.blog-post-content h2,
.post-content h2,
.article-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-top: 2.2em;
  margin-bottom: 0.65em;
  line-height: 1.2;
}
.blog-post-content h3,
.post-content h3,
.article-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-top: 1.8em;
  margin-bottom: 0.55em;
  line-height: 1.25;
}
.blog-post-content ul,
.blog-post-content ol,
.post-content ul,
.post-content ol,
.article-body ul,
.article-body ol {
  padding-left: 1.6em;
  margin: 1em 0 1.35em;
}
.blog-post-content li,
.post-content li,
.article-body li {
  margin-bottom: 0.55em;
  line-height: 1.75;
}

/* ============================================================
   PAGE CONTENT — About, Contact, Terms, Privacy, etc.
   ============================================================ */
.page-content,
.content-section {
  font-size: 1rem;
  line-height: 1.8;
}
.page-content p,
.content-section p {
  margin-bottom: 1.2em;
  line-height: 1.8;
}
.page-content h2,
.content-section h2 {
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.page-content h3,
.content-section h3 {
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}
.page-content ul,
.page-content ol,
.content-section ul,
.content-section ol {
  padding-left: 1.5em;
  margin: 0.8em 0 1.2em;
}
.page-content li,
.content-section li {
  margin-bottom: 0.5em;
  line-height: 1.72;
}

/* ============================================================
   STAT / COUNTER BLOCKS
   ============================================================ */
.stat-item,
.hero-stat {
  line-height: 1;
}
.stat-number,
.hero-stat-number,
[data-count] {
  line-height: 1;
  margin-bottom: 6px !important;
}
.stat-label,
.hero-stat-label {
  font-size: 0.82rem;
  line-height: 1.4;
}

/* ============================================================
   GRIDS — More gap between cards
   ============================================================ */
.features-grid {
  gap: 28px !important;
}
.blog-grid {
  gap: 28px !important;
}
.games-grid {
  gap: 24px !important;
}
.steps-grid,
.how-steps {
  gap: 28px !important;
}
.bonus-grid {
  gap: 24px !important;
}

/* ============================================================
   STEP CARDS — How to Play
   ============================================================ */
.step-card,
.step-item {
  padding: 32px 28px !important;
}
.step-number {
  margin-bottom: 16px !important;
}
.step-title {
  font-size: 1.15rem !important;
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
}
.step-desc,
.step-card p,
.step-item p {
  font-size: 0.96rem;
  line-height: 1.72;
  margin-bottom: 0;
}

/* ============================================================
   DOWNLOAD PAGE / BONUS CARDS
   ============================================================ */
.download-step,
.bonus-card {
  padding: 32px 28px !important;
}
.bonus-card h3,
.download-step h3 {
  margin-bottom: 12px !important;
}
.bonus-card p,
.download-step p {
  line-height: 1.72;
  margin-bottom: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 22px !important;
}
.form-group label {
  margin-bottom: 8px !important;
  font-size: 0.9rem;
  line-height: 1.4;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px !important;
  line-height: 1.5 !important;
}

/* ============================================================
   ALERT / DISCLAIMER BARS
   ============================================================ */
.alert-strip-inner {
  gap: 14px !important;
}
.alert-text {
  line-height: 1.5;
}

/* ============================================================
   GAME DETAIL PAGES
   ============================================================ */
.gp-hero-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 14px !important;
}
.gp-hero-desc,
.game-page-desc {
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 1.1em;
}

/* ============================================================
   RESPONSIVE TYPOGRAPHY SCALING
   ============================================================ */
@media (max-width: 1024px) {
  .section-header { margin-bottom: 48px !important; }
  .features-grid,
  .blog-grid,
  .steps-grid { gap: 24px !important; }
}

@media (max-width: 768px) {
  /* Scale down base font slightly */
  body { font-size: 0.97rem; }

  /* Section header */
  .section-header { margin-bottom: 40px !important; }
  .section-title { font-size: clamp(1.65rem, 5vw, 2.1rem) !important; }
  .section-subtitle { font-size: 1rem !important; }

  /* Section padding */
  .section { padding: 72px 0 !important; }
  .section-sm { padding: 52px 0 !important; }
  .section-lg { padding: 96px 0 !important; }

  /* Page hero */
  .page-hero { padding: 60px 0 52px !important; }
  .page-hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
  .page-hero-subtitle { font-size: 1rem !important; }

  /* Hero content */
  .hero-eyebrow { margin-bottom: 18px !important; }
  .hero-title { margin-bottom: 12px !important; }
  .hero-title-sub { margin-bottom: 18px !important; }

  /* Cards */
  .feature-card { padding: 28px 22px !important; }
  .step-card, .step-item { padding: 26px 22px !important; }
  .blog-card-body { padding: 20px !important; }
  .bonus-card, .download-step { padding: 26px 22px !important; }

  /* Footer */
  .footer-grid { gap: 36px !important; margin-bottom: 40px !important; }
  .footer-col h4 { margin-bottom: 16px !important; }
}

@media (max-width: 480px) {
  /* Section padding */
  .section { padding: 56px 0 !important; }
  .section-sm { padding: 40px 0 !important; }

  /* Smaller section headers */
  .section-header { margin-bottom: 32px !important; }
  .section-eyebrow { margin-bottom: 14px !important; }

  /* Tighter hero eyebrow */
  .hero-eyebrow { margin-bottom: 14px !important; }

  /* Cards full width padding */
  .feature-card { padding: 24px 18px !important; }
  .blog-card-body { padding: 18px !important; }

  /* FAQ */
  .faq-question { padding: 18px 20px !important; }
  .faq-answer-inner { padding: 16px 20px 20px !important; }

  /* Footer */
  .footer-grid { gap: 28px !important; }
  .footer-disclaimers { gap: 12px !important; }
  .disclaimer-card { padding: 14px 16px !important; }
}

/* ===== HOMEPAGE GAME CARD IMAGE SUPPORT ===== */
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
  transition: transform 0.35s ease;
}
.game-card:hover .game-card-img img {
  transform: scale(1.06);
}
.game-card-img .game-badge {
  z-index: 2;
  position: absolute;
  top: 10px; right: 10px;
}
/* ===== SHARED SCREENSHOT STRIP (Download + Home) ===== */
.ss-section { overflow: hidden; }
.ss-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,0,55,0.4) transparent;
}
.ss-track::-webkit-scrollbar { height: 5px; }
.ss-track::-webkit-scrollbar-track { background: transparent; }
.ss-track::-webkit-scrollbar-thumb { background: rgba(255,0,55,0.4); border-radius: 10px; }
.ss-frame {
  flex: 0 0 200px;
  height: 360px;
  background: linear-gradient(145deg, #1a0015, #0d000a);
  border: 2px solid rgba(255,0,55,0.2);
  border-radius: 20px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
  cursor: pointer;
}
.ss-frame:hover {
  border-color: rgba(255,0,55,0.55);
  box-shadow: 0 0 22px rgba(255,0,55,0.18);
}
.ss-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.ss-frame:hover img { transform: scale(1.04); }
.ss-frame-cap {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 44px 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  pointer-events: none;
}
.ss-frame-cap strong {
  display: block;
  font-family: Rajdhani, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.ss-frame-cap span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
  line-height: 1.35;
  text-align: center;
}
.ss-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.ss-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  border: none; padding: 0;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
  flex-shrink: 0;
}
.ss-dot.active { background: #FF0037; width: 22px; border-radius: 4px; }
@media (max-width: 640px) {
  .ss-frame { flex: 0 0 170px; height: 305px; border-radius: 16px; }
}

/* ===== LOGO IMAGE ===== */
.logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 1; }
.logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.site-header .logo-img {
  height: 36px;
}
.nav-overlay-head .logo-img {
  height: 32px;
}
.footer-brand .logo-img {
  height: 46px;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .site-header .logo-img { height: 30px; }
  .footer-brand .logo-img { height: 38px; }
}
/* ===== HERO PHONE MOCKUP — REAL APP IMAGE ===== */

/* Taller phone to match 840x1873 portrait ratio */
.phone-mockup {
  width: 260px !important;
  height: 576px !important;
}

.phone-mockup-wrap {
  min-height: 640px !important;
}

/* Screen takes full remaining height below notch, no padding */
.phone-screen--hero {
  padding: 0 !important;
  height: calc(100% - 32px) !important;
  overflow: hidden !important;
  display: block !important;
  line-height: 0;
}

/* Hero image fills the phone screen perfectly */
.phone-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Responsive: 900px—desktop squeeze */
@media (max-width: 1100px) and (min-width: 769px) {
  .phone-mockup { width: 230px !important; height: 513px !important; }
  .phone-mockup-wrap { min-height: 560px !important; }
}

/* At 768px tablet, phone is visible but slightly smaller */
@media (max-width: 900px) and (min-width: 769px) {
  .phone-mockup { width: 210px !important; height: 468px !important; }
  .phone-mockup-wrap { min-height: 510px !important; }
}

/* Keep existing 768px breakpoint override proportional */
@media (max-width: 768px) {
  .phone-mockup { width: 200px !important; height: 446px !important; }
}
/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */

/* Blog hero */
.blog-hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  text-align: center;
}

/* Blog filter pills */
.blog-filters {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-card);
  background: var(--bg-primary);
  position: sticky;
  top: 65px;
  z-index: 10;
}
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Featured post section */
.featured-post-section { padding: 60px 0 40px; }
.featured-post-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  transition: box-shadow 0.3s;
}
.featured-post-card:hover {
  box-shadow: 0 12px 48px rgba(255,0,55,0.15);
  border-color: rgba(255,0,55,0.4);
}

.featured-post-image {
  position: relative;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  background: var(--bg-card-hover);
}
.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.featured-post-card:hover .featured-post-image img {
  transform: scale(1.04);
}

.featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--red-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(255,0,55,0.4);
}

.featured-post-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.featured-post-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 10px 0 14px;
}
.featured-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.featured-post-title a:hover { color: var(--red-primary); }
.featured-post-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* Blog grid section */
.blog-grid-section { padding: 40px 0 80px; }

/* Blog card image container */
.blog-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card-hover);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

/* Blog card body & links */
.blog-card-body { padding: 20px; }
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-title a:hover { color: var(--red-primary); }
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-card-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-primary);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: 4px;
}
.blog-card-link:hover { opacity: 0.8; text-decoration: underline; }

/* Post tag pills */
.post-tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.post-tag-pill.guides {
  background: rgba(0,150,255,0.12);
  color: #00a0ff;
  border: 1px solid rgba(0,150,255,0.25);
}
.post-tag-pill.bonuses {
  background: rgba(255,215,0,0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(255,215,0,0.25);
}
.post-tag-pill.game-tips {
  background: var(--red-dim);
  color: var(--red-primary);
  border: 1px solid rgba(255,0,55,0.25);
}
.post-tag-pill.strategy {
  background: rgba(0,230,118,0.08);
  color: var(--success);
  border: 1px solid rgba(0,230,118,0.2);
}

/* Post meta */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  align-items: center;
}
.post-meta-item { display: flex; align-items: center; gap: 4px; }
.post-hero-meta { margin-top: 16px; margin-bottom: 0; }

/* Blog CTA section */
.blog-cta-section { padding: 80px 0; background: var(--bg-secondary); }
.blog-cta-box {
  background: linear-gradient(135deg, rgba(255,0,55,0.1), rgba(255,0,55,0.03));
  border: 1px solid rgba(255,0,55,0.3);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
}
.blog-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-cta-box p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-disclaimer { margin-top: 16px; font-size: 0.78rem; color: var(--text-muted); }

/* Blog post hero title */
.post-hero-inner { max-width: 840px; }
.post-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 0;
  color: var(--text-primary);
}

/* Blog post featured image block */
.blog-post-featured-img {
  padding: 32px 0 0;
  background: var(--bg-primary);
}
.blog-post-featured-img img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  border: 1px solid var(--border-card);
}

/* Blog post layout */
.blog-post-container { max-width: 860px; margin: 0 auto; }

/* Responsive blog layout */
@media (max-width: 900px) {
  .featured-post-card { grid-template-columns: 1fr; }
  .featured-post-image { min-height: 220px; }
  .featured-post-body { padding: 28px 24px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cta-box { padding: 40px 24px; }
  .blog-post-featured-img img { max-height: 260px; }
}