/* ============================================
   ASTRONAUT CRASH GAME - Global Styles
   astro-naut.in | 2026
   ============================================ */

:root {
  --red-primary: #C8102E;
  --red-dark: #8B0000;
  --red-glow: #FF1A3C;
  --bg-dark: #0A0A0F;
  --bg-card: #12121A;
  --bg-card2: #1A1A28;
  --white: #FFFFFF;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-20: rgba(255,255,255,0.1);
  --green-btn: #3ACE16;
  --green-btn-hover: #2EAD11;
  --gold: #FFD700;
  --border-red: rgba(200,16,46,0.4);
  --border-glow: rgba(200,16,46,0.7);
  --text-muted: #8888AA;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,16,46,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,16,46,0.04) 0%, transparent 50%);
}

/* STARS BACKGROUND */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 65%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 45%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 85%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 90%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 30%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 40%, rgba(255,255,255,0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }

p { color: var(--white-80); margin-bottom: 1rem; }
a { color: var(--red-glow); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }
strong { color: var(--white); }
em { color: var(--gold); font-style: normal; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(255,255,255,0.02);
}

/* ============================================
   HEADER / NAV — PREMIUM REDESIGN
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(6,6,12,0.98) 0%, rgba(10,8,16,0.95) 100%);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(200,16,46,0.18);
  padding: 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Top accent line — red gradient */
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,16,46,0.0) 5%,
    rgba(255,60,80,1.0) 40%,
    rgba(255,100,120,1.0) 50%,
    rgba(255,60,80,1.0) 60%,
    rgba(200,16,46,0.0) 95%,
    transparent 100%);
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(5, 5, 10, 0.99);
  box-shadow: 0 4px 48px rgba(0,0,0,0.7), 0 1px 0 rgba(200,16,46,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  max-width: 1320px;
  margin: 0 auto;
  height: 58px;
  gap: 8px;
}

/* ── LOGO ─────────────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter 0.2s, transform 0.2s;
  padding: 4px 0;
}
.site-logo:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
}

.site-logo img:first-child {
  height: 34px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,80,100,0.4));
}

.site-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* ── NAV DIVIDER after logo ───────────────── */
.header-inner::after {
  display: none;
}

/* ── NAV CONTAINER ───────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
}

/* ── NAV LINKS ───────────────────────────── */
.site-nav a {
  color: rgba(255,255,255,0.60);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

/* Active state */
.site-nav a.active {
  color: #fff;
}
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 25%; right: 25%;
  height: 2px;
  background: linear-gradient(90deg, #ff3c5a, #ff6b6b);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(255,60,90,0.7);
}

/* ── CTA BUTTON ──────────────────────────── */
.nav-cta {
  background: linear-gradient(135deg, #3ACE16 0%, #29b00e 100%) !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 0.8rem !important;
  padding: 9px 20px !important;
  border-radius: 22px !important;
  margin-left: 10px;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(58,206,22,0.5) !important;
  animation: ctaPing 2.5s ease-in-out infinite;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

@keyframes ctaPing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,206,22,0.5), 0 4px 14px rgba(58,206,22,0.3); }
  50%       { box-shadow: 0 0 0 5px rgba(58,206,22,0.0), 0 4px 20px rgba(58,206,22,0.5); }
}

.nav-cta:hover {
  background: linear-gradient(135deg, #4fe820 0%, #3ACE16 100%) !important;
  transform: translateY(-1px) scale(1.04) !important;
  box-shadow: 0 6px 24px rgba(58,206,22,0.55) !important;
  animation: none !important;
  color: #000 !important;
}

/* ── NAV SEPARATOR — vertical line between logo and nav ─── */
.nav-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.12);
  margin: 0 12px;
  flex-shrink: 0;
}

/* ── BURGER BUTTON ──────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.burger:hover {
  background: rgba(200,16,46,0.15);
  border-color: rgba(200,16,46,0.5);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* Burger → X animation */
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0F 0%, #1A0510 50%, #0A0A0F 100%);
  z-index: 0;
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.18;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.15);
  border: 1px solid var(--border-red);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--red-glow);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge::before {
  content: '🚀';
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--red-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-80);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 14px 22px;
  text-align: center;
}

.stat-item .val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red-glow);
  display: block;
}

.stat-item .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-green {
  background: var(--green-btn);
  color: #000;
  box-shadow: 0 4px 20px rgba(58,206,22,0.35);
}

.btn-green:hover {
  background: var(--green-btn-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58,206,22,0.5);
}

.btn-red {
  background: var(--red-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,16,46,0.35);
}

.btn-red:hover {
  background: var(--red-glow);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,16,46,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  background: var(--white-20);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* PULSE ANIMATION */
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(58,206,22,0.35); }
  50% { box-shadow: 0 4px 35px rgba(58,206,22,0.65); }
}

.btn-green { animation: pulse 2.5s ease-in-out infinite; }
.btn-green:hover { animation: none; }

/* ============================================
   CARDS / PANELS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

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

.card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200,16,46,0.2);
}

/* FRAME STYLE (like screenshot) */
.frame-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(200,16,46,0.15),
    0 4px 24px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.frame-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
  border-radius: 2px;
}

/* GRID LAYOUTS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 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: 20px; }

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--white) 40%, var(--red-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head p {
  color: var(--white-60);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  background: rgba(200,16,46,0.15);
  border: 1px solid var(--border-red);
  color: var(--red-glow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ============================================
   MULTIPLIER / GAME ELEMENTS
   ============================================ */
.multiplier-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  padding: 6px 16px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(200,16,46,0.5);
  font-family: 'Courier New', monospace;
}

.rtp-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #1A3A10, #2E6B1C);
  color: #5EE633;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid rgba(58,206,22,0.3);
}

/* ============================================
   TABLE STYLES
   ============================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-red);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

thead th {
  background: rgba(200,16,46,0.15);
  color: var(--white);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-red);
  white-space: nowrap;
}

tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--white-80);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr:hover td {
  background: rgba(200,16,46,0.06);
  color: var(--white);
}

.td-green { color: #3ACE16 !important; font-weight: 700; }
.td-red { color: var(--red-glow) !important; font-weight: 700; }
.td-gold { color: var(--gold) !important; font-weight: 700; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--red-glow); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--white-80); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-hero {
  padding: 64px 0 52px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 40%, var(--red-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p.lead {
  font-size: 1.1rem;
  color: var(--white-80);
  max-width: 700px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  overflow: hidden;
}

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

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

.faq-q .icon {
  color: var(--red-glow);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q .icon { transform: rotate(45deg); }

.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  color: var(--white-80);
  line-height: 1.7;
}

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

/* ============================================
   STEPS / HOW TO PLAY
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 8px 32px rgba(200,16,46,0.2);
}

.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(200,16,46,0.4);
}

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

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--white-60);
  margin: 0;
}

/* ============================================
   CASINO CARDS
   ============================================ */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200,16,46,0.25);
  border-color: var(--border-glow);
}

.casino-rank {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.casino-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.casino-bonus {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-btn);
}

.casino-bonus small {
  font-size: 0.75rem;
  color: var(--white-60);
  font-weight: 400;
}

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

.casino-tag {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--white-60);
}

.casino-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ============================================
   PROMO CODE BOX
   ============================================ */
.promo-box {
  background: linear-gradient(135deg, rgba(58,206,22,0.08), rgba(200,16,46,0.08));
  border: 1px solid rgba(58,206,22,0.3);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-box .code {
  background: rgba(0,0,0,0.4);
  border: 1px dashed rgba(58,206,22,0.5);
  border-radius: 8px;
  padding: 8px 18px;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-btn);
  letter-spacing: 0.1em;
}

/* ============================================
   DISCLAIMER / WARNING
   ============================================ */
.disclaimer {
  background: rgba(200,16,46,0.07);
  border: 1px solid rgba(200,16,46,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.6;
}

.disclaimer strong { color: var(--red-glow); }

.age-notice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,16,46,0.15);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red-glow);
}

/* ============================================
   IMAGE BLOCKS — ENHANCED FRAMES + HOVER ZOOM-OUT
   ============================================ */

/* Base img-card with glowing neon frame */
.img-card {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-red);
  position: relative;
  background: var(--bg-card);
  box-shadow:
    0 0 0 1px rgba(200,16,46,0.12),
    0 0 18px rgba(200,16,46,0.15),
    0 8px 32px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* Neon top-line accent */
.img-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
  z-index: 2;
  border-radius: 2px;
  opacity: 0.8;
  pointer-events: none;
}

/* Corner accents */
.img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(200,16,46,0.08) 0%, transparent 40%),
    linear-gradient(315deg, rgba(200,16,46,0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* START slightly zoomed in, zoom OUT on hover */
  transform: scale(1.04);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

/* ZOOM OUT on hover — image reveals more */
.img-card:hover {
  box-shadow:
    0 0 0 1px rgba(200,16,46,0.3),
    0 0 30px rgba(200,16,46,0.25),
    0 12px 48px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

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

/* img-banner — wide banner images with frame */
.img-banner {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-red);
  margin: 28px 0;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(200,16,46,0.1),
    0 0 24px rgba(200,16,46,0.12),
    0 8px 40px rgba(0,0,0,0.5);
  transition: box-shadow 0.4s ease;
}

.img-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
  z-index: 2;
  pointer-events: none;
}

.img-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

.img-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
  /* START slightly zoomed in */
  transform: scale(1.03);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

/* ZOOM OUT on hover */
.img-banner:hover {
  box-shadow:
    0 0 0 1px rgba(200,16,46,0.25),
    0 0 36px rgba(200,16,46,0.2),
    0 12px 48px rgba(0,0,0,0.6);
}

.img-banner:hover img {
  transform: scale(1.0);
}

/* content-img — inline content images */
.content-img {
  width: 100%;
  border-radius: 14px;
  margin: 20px 0;
  border: 2px solid var(--border-red);
  display: block;
  box-shadow:
    0 0 16px rgba(200,16,46,0.12),
    0 6px 24px rgba(0,0,0,0.5);
  /* START zoomed in */
  transform: scale(1.02);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.content-img:hover {
  transform: scale(1.0);
  box-shadow:
    0 0 24px rgba(200,16,46,0.2),
    0 8px 32px rgba(0,0,0,0.6);
}

/* page-hero-img — top banner on inner pages */
.page-hero-img {
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.page-hero:hover .page-hero-img {
  transform: scale(1.0);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--white-60);
}

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

/* ============================================
   PAYMENT ICONS
   ============================================ */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pay-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-80);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: rgba(0,0,0,0.6);
  border-top: 1px solid var(--border-red);
  padding: 48px 0 24px;
  position: relative;
  z-index: 1;
}

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

.footer-brand img { height: 48px; margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

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

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.87rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--red-glow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal {
  max-width: 900px;
  margin: 24px auto 0;
  font-size: 0.77rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   ARTICLE / CONTENT
   ============================================ */
.article-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: var(--white);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-red);
}

.article-body h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: var(--white);
}

.article-body h4 {
  font-size: 1rem;
  margin: 18px 0 8px;
  color: var(--red-glow);
}

.article-body p { margin-bottom: 1.1rem; }

.article-body ul, .article-body ol {
  padding-left: 22px;
  margin-bottom: 1.2rem;
}

.article-body li {
  color: var(--white-80);
  margin-bottom: 7px;
  line-height: 1.65;
}

.article-body blockquote {
  border-left: 3px solid var(--red-primary);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(200,16,46,0.06);
  border-radius: 0 8px 8px 0;
  color: var(--white-80);
  font-style: italic;
}

/* ============================================
   HIGHLIGHT BOXES
   ============================================ */
.info-box {
  background: rgba(200,16,46,0.07);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
}

.info-box h4 {
  color: var(--red-glow);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.info-box p { margin: 0; color: var(--white-80); font-size: 0.92rem; }

.success-box {
  background: rgba(58,206,22,0.07);
  border: 1px solid rgba(58,206,22,0.3);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
}

.success-box h4 { color: var(--green-btn); }

/* ============================================
   BREADCRUMB SCHEMA
   ============================================ */
.schema-hidden { display: none; }

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-sep { display: none; }
  .header-inner { position: relative; padding: 10px 16px; }

  /* Mobile drawer */
  .site-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: -100%;
    width: min(280px, 85vw);
    height: 100dvh;
    background: rgba(8, 8, 13, 0.98);
    backdrop-filter: blur(24px);
    padding: 72px 16px 32px;
    border-left: 1px solid rgba(200,16,46,0.25);
    gap: 4px;
    z-index: 998;
    overflow-y: auto;
    box-shadow: -8px 0 48px rgba(0,0,0,0.6);
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
    right: 0;
  }

  /* Overlay behind drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 997;
    backdrop-filter: blur(2px);
    animation: overlayIn 0.3s ease;
  }
  .nav-overlay.show { display: block; }

  @keyframes overlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .site-nav a {
    width: 100%;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    border: 1px solid transparent;
    transition: all 0.18s ease;
  }
  .site-nav a:hover {
    background: rgba(200,16,46,0.15);
    border-color: rgba(200,16,46,0.3);
    color: #fff;
    transform: translateX(4px);
  }
  .site-nav a.active {
    background: rgba(200,16,46,0.2);
    border-color: rgba(200,16,46,0.4);
    color: #fff;
  }
  .site-nav a.active::after { display: none; }

  .nav-cta {
    width: 100% !important;
    text-align: center !important;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    margin: 8px 0 0 !important;
    border-radius: 12px !important;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
  }

  /* Nav section divider labels */
  .nav-group-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(200,16,46,0.7);
    text-transform: uppercase;
    padding: 12px 18px 4px;
  }

  .hero { min-height: auto; padding: 50px 0 40px; }
  .hero-stats { gap: 10px; }
  .stat-item { padding: 10px 16px; }
  .stat-item .val { font-size: 1.2rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .page-hero { padding: 40px 0 32px; }

  .container { padding: 0 16px; }
  .section { padding: 40px 0; }

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

  table { font-size: 0.82rem; }
  thead th, tbody td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .promo-box { flex-direction: column; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes rocket-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rocket-float { animation: rocket-float 3.5s ease-in-out infinite; }
.glow-pulse { animation: glow-pulse 2s ease-in-out infinite; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-red { color: var(--red-glow); }
.text-green { color: var(--green-btn); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
.page-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--border-glow);
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.page-hero-content {
  padding: 28px 0 12px;
}
.page-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-title em {
  font-style: normal;
  color: var(--red-glow);
  text-shadow: 0 0 20px rgba(200,16,46,0.6);
}
.page-subtitle {
  color: var(--white-60);
  font-size: 1.1rem;
  max-width: 700px;
}

/* ============================================
   INTRO BLOCK
   ============================================ */
.intro-block {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 16px;
}
.lead-text {
  font-size: 1.08rem;
  color: var(--white-80);
  line-height: 1.8;
  margin-bottom: 24px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.stat-item {
  text-align: center;
  background: rgba(200,16,46,0.1);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 16px 12px;
}
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red-glow);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   CASINO CARDS
   ============================================ */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}
.casino-card.featured {
  border-color: var(--red-glow);
  box-shadow: 0 0 32px rgba(200,16,46,0.25);
}
.casino-rank {
  background: var(--red-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
}
.casino-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-red);
  flex-wrap: wrap;
}
.casino-logo-wrap { flex-shrink: 0; }
.casino-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--bg-card2);
  padding: 8px;
}
.casino-title-wrap { flex: 1; min-width: 200px; }
.casino-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.casino-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.stars-num { color: var(--white-60); font-size: 0.9rem; margin-left: 6px; }
.casino-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.badge-green { background: rgba(58,206,22,0.15); border: 1px solid rgba(58,206,22,0.4); color: #3ACE16; }
.badge-blue { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.4); color: #93C5FD; }
.badge-gold { background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.4); color: var(--gold); }
.casino-bonus-big {
  text-align: center;
  padding: 16px;
  background: rgba(200,16,46,0.1);
  border-radius: 12px;
  min-width: 180px;
}
.bonus-amount { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.bonus-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.promo-code-box {
  background: rgba(58,206,22,0.15);
  border: 1px dashed rgba(58,206,22,0.5);
  color: #3ACE16;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 8px;
}
.casino-body { padding: 24px 28px; }
.casino-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pros, .cons { background: var(--bg-card2); border-radius: 12px; padding: 20px; }
.pros-title { color: #3ACE16; margin-bottom: 12px; font-size: 1rem; }
.cons-title { color: var(--red-glow); margin-bottom: 12px; font-size: 1rem; }
.pros ul, .cons ul { list-style: none; }
.pros ul li, .cons ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--white-80);
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
}
.pros ul li::before { content: '✓'; position: absolute; left: 0; color: #3ACE16; }
.cons ul li::before { content: '⚠'; position: absolute; left: 0; color: var(--gold); }
.casino-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.detail-item {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 12px;
}
.detail-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.detail-val { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.casino-review-text h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin: 20px 0 12px;
}
.casino-review-text p {
  color: var(--white-80);
  margin-bottom: 14px;
  line-height: 1.8;
}
.casino-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-red);
}
.casino-cta-row .btn-large { font-size: 1rem; }

/* ============================================
   COMPARISON TABLE HIGHLIGHT
   ============================================ */
.highlight-row td { background: rgba(200,16,46,0.08); }
.highlight-col { background: rgba(200,16,46,0.06); }
.compare-main .highlight-col { border-left: 2px solid var(--red-glow); border-right: 2px solid var(--red-glow); }
.table-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; font-style: italic; }

/* ============================================
   TEST GRID
   ============================================ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 14px;
  padding: 24px;
}
.test-icon { font-size: 2rem; margin-bottom: 12px; }
.test-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--white); }
.test-card p { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; }

/* ============================================
   SAFETY BLOCK
   ============================================ */
.safety-block { display: flex; flex-direction: column; gap: 20px; }
.safety-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 14px;
  padding: 24px;
  align-items: flex-start;
}
.safety-icon { font-size: 2rem; flex-shrink: 0; }
.safety-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.safety-item p { color: var(--white-80); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   LINKS GRID
   ============================================ */
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.link-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s;
}
.link-card:hover { transform: translateY(-4px); border-color: var(--red-glow); }
.link-card img { width: 100%; height: 100px; object-fit: cover; display: block; }
.link-card span { display: block; padding: 12px; color: var(--white); font-size: 0.9rem; font-weight: 600; }

/* ============================================
   PROMO CARDS (bonus page)
   ============================================ */
.promo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.promo-card.featured-promo { border-color: var(--red-glow); box-shadow: 0 0 28px rgba(200,16,46,0.2); }
.promo-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--red-primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.promo-badge-blue { background: #2563EB !important; }
.promo-casino-logo { width: 70px; height: 70px; object-fit: contain; border-radius: 10px; background: var(--bg-card2); padding: 6px; margin-bottom: 16px; }
.promo-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.promo-value { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
.promo-terms { list-style: none; margin-bottom: 20px; }
.promo-terms li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; color: var(--white-80); }
.promo-terms li:last-child { border-bottom: none; }

/* ============================================
   BONUS TYPES GRID
   ============================================ */
.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 14px;
  padding: 24px;
}
.bonus-type-icon { font-size: 2rem; margin-bottom: 12px; }
.bonus-type-card h3 { font-size: 1rem; margin-bottom: 10px; }
.bonus-type-card p { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; margin-bottom: 14px; }
.bonus-type-ev { background: rgba(58,206,22,0.08); border: 1px solid rgba(58,206,22,0.2); border-radius: 8px; padding: 10px; }
.ev-label { display: block; font-size: 0.75rem; color: var(--text-muted); }
.ev-val { display: block; font-size: 0.88rem; color: #3ACE16; font-weight: 600; margin-top: 4px; }

/* ============================================
   WAGERING EXPLAINER
   ============================================ */
.wagering-explainer { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border-red); padding: 32px; }
.wagering-explainer p { color: var(--white-80); margin-bottom: 20px; line-height: 1.8; }
.wagering-example { background: var(--bg-card2); border-radius: 12px; padding: 24px; margin: 20px 0; }
.wagering-example h3 { margin-bottom: 16px; }
.wagering-calc { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.calc-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 30px;
  height: 30px;
  background: var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.wagering-note { font-size: 0.88rem; color: var(--text-muted); font-style: italic; }
.wagering-table-wrap { margin-top: 24px; }

/* ============================================
   STEPS LIST
   ============================================ */
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 14px;
  padding: 24px;
  align-items: flex-start;
}
.step-circle {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(200,16,46,0.4);
}
.step-circle.small { width: 32px; height: 32px; font-size: 0.88rem; }
.step-content h3, .step-content h4 { margin-bottom: 8px; font-size: 1.05rem; }
.step-content p, .step-content { color: var(--white-80); line-height: 1.7; font-size: 0.93rem; }
.steps-list.compact .step-item { padding: 16px 20px; gap: 14px; }
.device-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; font-style: italic; }
.app-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

/* ============================================
   SYSTEM REQ GRID
   ============================================ */
.req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 20px;
}
.req-card h3 { font-size: 0.95rem; margin-bottom: 12px; }
.req-card ul { list-style: none; }
.req-card li { font-size: 0.85rem; color: var(--white-80); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ============================================
   FAQ LIST
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 22px 24px;
}
.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  cursor: default;
}
.faq-q::before { content: 'Q: '; color: var(--red-glow); }
.faq-a {
  color: var(--white-80);
  line-height: 1.8;
  font-size: 0.93rem;
}
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.faq-nav-link {
  background: rgba(200,16,46,0.12);
  border: 1px solid var(--border-red);
  color: var(--white-80);
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.faq-nav-link:hover { background: var(--red-primary); color: var(--white); }

/* ============================================
   VERDICT BOX (review page)
   ============================================ */
.verdict-box {
  display: flex;
  gap: 32px;
  background: var(--bg-card);
  border: 2px solid var(--red-glow);
  border-radius: 16px;
  padding: 32px;
  align-items: flex-start;
}
.verdict-score { text-align: center; min-width: 120px; }
.score-big { font-size: 4rem; font-weight: 900; color: var(--red-glow); line-height: 1; }
.score-big span { font-size: 1.5rem; color: var(--text-muted); }
.score-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
.verdict-breakdown { flex: 1; }
.verdict-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 0.9rem; }
.verdict-row > span:first-child { min-width: 160px; color: var(--white-60); }
.verdict-row > span:last-child { min-width: 40px; text-align: right; color: var(--white); font-weight: 700; }
.stars-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.stars-fill { height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red-glow)); border-radius: 4px; }

/* ============================================
   SPECS GRID (review page)
   ============================================ */
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.spec-item { background: var(--bg-card); border: 1px solid var(--border-red); border-radius: 10px; padding: 14px; }
.spec-label { display: block; font-size: 0.74rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.spec-val { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.content-img { width: 100%; border-radius: 14px; margin: 20px 0; border: 2px solid var(--border-red); display: block; box-shadow: 0 0 16px rgba(200,16,46,0.12), 0 6px 24px rgba(0,0,0,0.5); transform: scale(1.02); transition: transform 0.5s ease, box-shadow 0.4s ease; overflow: hidden; }
.developer-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.dev-stat { text-align: center; background: rgba(200,16,46,0.1); border-radius: 12px; padding: 16px; }
.dev-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--red-glow); }
.dev-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }
.pros.full-card, .cons.full-card { border-radius: 14px; }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.verdict-final p { color: var(--white-80); line-height: 1.8; margin-bottom: 16px; }
.verdict-cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 24px 0; }

/* ============================================
   COMPARISON PAGE
   ============================================ */
.features-compare { display: flex; flex-direction: column; gap: 32px; }
.feature-section h3 { font-size: 1.2rem; margin-bottom: 16px; color: var(--red-glow); }
.feature-section p { color: var(--white-80); line-height: 1.8; margin-bottom: 14px; }
.recommendation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 14px;
  padding: 24px;
}
.rec-card.rec-astronaut { border-color: var(--red-glow); box-shadow: 0 0 20px rgba(200,16,46,0.2); }
.rec-card h3 { margin-bottom: 14px; font-size: 1rem; }
.rec-card ul { list-style: none; margin-bottom: 20px; }
.rec-card li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; color: var(--white-80); padding-left: 16px; position: relative; }
.rec-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green-btn); }
.compare-deep p { color: var(--white-80); line-height: 1.8; margin-bottom: 16px; }

/* ============================================
   PAYMENTS PAGE
   ============================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--border-red); border-radius: 14px; padding: 24px; }
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h4 { margin-bottom: 10px; font-size: 1rem; color: var(--white); }
.benefit-card p { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; }
.tip-box {
  background: rgba(58,206,22,0.08);
  border: 1px solid rgba(58,206,22,0.3);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.tip-box h3 { color: #3ACE16; margin-bottom: 8px; }
.tip-box p { color: var(--white-80); font-size: 0.9rem; }

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-verdict-box {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  padding: 28px;
}
.legal-verdict-box h2 { margin-bottom: 20px; }
.legal-status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.legal-status-item { border-radius: 12px; padding: 20px; text-align: center; }
.legal-status-item h3 { font-size: 0.95rem; margin-bottom: 8px; }
.legal-status-item p { font-size: 0.82rem; line-height: 1.5; }
.status-grey { background: rgba(136,136,170,0.1); border: 1px solid rgba(136,136,170,0.3); }
.status-green { background: rgba(58,206,22,0.1); border: 1px solid rgba(58,206,22,0.3); }
.status-yellow { background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.3); }
.status-red { background: rgba(200,16,46,0.1); border: 1px solid rgba(200,16,46,0.3); }
.status-icon { display: block; font-size: 2rem; margin-bottom: 10px; }
.legal-list { list-style: disc; padding-left: 24px; color: var(--white-80); line-height: 1.9; }
.legal-list li { margin-bottom: 10px; }
.legal-list strong { color: var(--white); }
.tax-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.tax-card { background: var(--bg-card); border: 1px solid var(--border-red); border-radius: 14px; padding: 24px; }
.tax-card h3 { margin-bottom: 12px; font-size: 1rem; }
.tax-card p { font-size: 0.88rem; color: var(--white-80); line-height: 1.7; }
.disclaimer-prominent {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* ============================================
   TIPS GRID
   ============================================ */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tip-card { background: var(--bg-card); border: 1px solid var(--border-red); border-radius: 14px; padding: 22px; }
.tip-card h3 { font-size: 0.95rem; margin-bottom: 10px; }
.tip-card p { font-size: 0.87rem; color: var(--white-60); line-height: 1.7; }

/* ============================================
   404 PAGE
   ============================================ */
.error-page { text-align: center; padding: 80px 20px; }
.error-rocket { font-size: 5rem; margin-bottom: 16px; }
.error-title { font-size: 6rem; font-weight: 900; color: var(--red-glow); line-height: 1; }
.error-subtitle { font-size: 1.5rem; margin-bottom: 16px; }
.error-text { color: var(--white-60); margin-bottom: 32px; }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER BUTTONS
   ============================================ */
.footer-btn { display: block; margin-bottom: 10px; text-align: center; }

/* ============================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================ */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .casino-pros-cons { grid-template-columns: 1fr; }
  .casino-details-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-cards { grid-template-columns: 1fr; }
  .bonus-types-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-status-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .developer-stats { grid-template-columns: repeat(2, 1fr); }
  .recommendation-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero-img { height: 200px; }
  .casino-header { flex-direction: column; }
  .casino-bonus-big { width: 100%; }
  .casino-pros-cons { grid-template-columns: 1fr; }
  .casino-details-grid { grid-template-columns: repeat(2, 1fr); }
  .verdict-box { flex-direction: column; }
  .promo-cards { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-status-grid { grid-template-columns: repeat(2, 1fr); }
  .tax-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .step-circle { width: 36px; height: 36px; font-size: 0.9rem; }
  .app-cta-row { flex-direction: column; }
  .app-cta-row .btn { width: 100%; }
  .verdict-cta { flex-direction: column; }
  .verdict-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .bonus-types-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .developer-stats { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ENHANCED IMAGE FRAMES & SCROLL ZOOM EFFECT
   ============================================ */

/* Universal scroll-reveal with zoom-out */
.scroll-reveal {
  opacity: 0;
  transform: scale(1.04) translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }

/* =====================
   BEAUTIFUL IMAGE FRAME
   ===================== */
.img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card2);
  
  /* Triple border glow effect */
  box-shadow:
    0 0 0 1px rgba(200, 16, 46, 0.5),
    0 0 0 3px rgba(200, 16, 46, 0.15),
    0 0 0 6px rgba(200, 16, 46, 0.06),
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 2px 8px rgba(200, 16, 46, 0.25);
  
  /* Subtle inner light at top */
  border: 1px solid rgba(200, 16, 46, 0.55);
  margin: 28px 0;
}

.img-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,16,46,0.8) 20%,
    rgba(255,80,80,1) 50%,
    rgba(200,16,46,0.8) 80%,
    transparent 100%);
  z-index: 2;
  border-radius: 18px 18px 0 0;
}

.img-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,16,46,0.4) 30%,
    rgba(200,16,46,0.6) 50%,
    rgba(200,16,46,0.4) 70%,
    transparent 100%);
  z-index: 2;
}

.img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 420px;
  object-fit: cover;
}

.img-frame:hover img {
  transform: scale(1.02);
}

/* Corner accent dots */
.img-frame .frame-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: 3;
}

.img-frame .frame-corner-tl {
  top: -1px; left: -1px;
  border-top: 2px solid var(--red-glow);
  border-left: 2px solid var(--red-glow);
  border-radius: 4px 0 0 0;
}

.img-frame .frame-corner-tr {
  top: -1px; right: -1px;
  border-top: 2px solid var(--red-glow);
  border-right: 2px solid var(--red-glow);
  border-radius: 0 4px 0 0;
}

.img-frame .frame-corner-bl {
  bottom: -1px; left: -1px;
  border-bottom: 2px solid var(--red-glow);
  border-left: 2px solid var(--red-glow);
  border-radius: 0 0 0 4px;
}

.img-frame .frame-corner-br {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--red-glow);
  border-right: 2px solid var(--red-glow);
  border-radius: 0 0 4px 0;
}

/* Caption under framed image */
.img-frame-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* =====================
   GAME SCREENSHOT FRAME
   Special variant with tech/HUD look
   ===================== */
.game-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #060610;
  
  box-shadow:
    0 0 0 1px rgba(58, 206, 22, 0.5),
    0 0 0 3px rgba(58, 206, 22, 0.12),
    0 0 30px rgba(58, 206, 22, 0.15),
    0 12px 48px rgba(0, 0, 0, 0.7);
  
  border: 1px solid rgba(58, 206, 22, 0.4);
  margin: 28px 0;
}

.game-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(58,206,22,0.8) 20%,
    rgba(100,255,50,1) 50%,
    rgba(58,206,22,0.8) 80%,
    transparent 100%);
  z-index: 2;
}

/* HUD scan line overlay */
.game-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 14px;
}

.game-frame img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 440px;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 0;
}

.game-frame:hover img {
  transform: scale(1.015);
}

/* HUD badge in corner of game frame */
.game-frame-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(58,206,22,0.6);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #3ACE16;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* =====================
   CONTENT IMAGE FRAME
   Mid-article images
   ===================== */
.content-img-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 24px 0;
  
  box-shadow:
    0 0 0 1px rgba(200, 16, 46, 0.35),
    0 4px 24px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
  
  border: 1px solid rgba(200, 16, 46, 0.4);
  background: var(--bg-card);
}

.content-img-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.9), transparent);
  z-index: 2;
}

.content-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-img-frame:hover img {
  transform: scale(1.015);
}

/* =====================
   CARD IMAGE ZOOM
   Images inside cards
   ===================== */
.card-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,16,46,0.3);
  margin-bottom: 16px;
}

.card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.card-img-wrap:hover img {
  transform: scale(1.05);
}

/* =====================
   SCROLL ZOOM PARALLAX
   Applied to page-hero-img 
   ===================== */
.parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* =====================
   SECTION DIVIDER
   ===================== */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), var(--red-glow));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* =====================
   CARD HOVER LIFT ENHANCED
   ===================== */
.card-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(200, 16, 46, 0.22);
}

/* =====================
   NUMBER BADGE (for steps)
   ===================== */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  margin-right: 10px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(200,16,46,0.4);
}

/* =====================
   LOADING SKELETON
   ===================== */
@keyframes skeleton-shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 75%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
}

/* =====================
   IMAGE CAPTION LABEL
   ===================== */
.img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 20px 16px 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  z-index: 3;
}

/* =====================
   IMPROVED .content-img
   (already used in HTML)
   ===================== */
.content-img {
  width: 100%;
  border-radius: 14px;
  margin: 20px 0;
  border: 1px solid rgba(200,16,46,0.4);
  box-shadow:
    0 0 0 3px rgba(200,16,46,0.08),
    0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.content-img:hover {
  transform: scale(1.01) translateY(-2px);
  box-shadow:
    0 0 0 3px rgba(200,16,46,0.15),
    0 16px 48px rgba(0,0,0,0.6);
}

/* =====================
   IMPROVED .img-banner 
   (already used in HTML)
   ===================== */
.img-banner {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200,16,46,0.45);
  margin: 28px 0;
  position: relative;
  box-shadow:
    0 0 0 3px rgba(200,16,46,0.1),
    0 8px 40px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.img-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
  z-index: 2;
}

.img-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 420px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-banner:hover img {
  transform: scale(1.02);
}

/* =====================
   PAGE HERO IMG UPGRADE
   ===================== */
.page-hero-img {
  transition: transform 0.3s ease;
  filter: brightness(0.92);
}

/* =====================
   GLOW BORDER ANIMATION
   ===================== */
@keyframes border-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(200,16,46,0.4), 0 8px 32px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 0 2px rgba(200,16,46,0.7), 0 8px 48px rgba(200,16,46,0.15); }
}

.img-frame.glow-anim { animation: border-glow 3s ease-in-out infinite; }

/* =====================
   MOBILE ADJUSTMENTS
   ===================== */
@media (max-width: 768px) {
  .img-frame img, .game-frame img, .content-img-frame img {
    max-height: 240px;
  }
  .img-banner img {
    max-height: 220px;
  }
  .img-frame, .game-frame {
    border-radius: 12px;
    margin: 16px 0;
  }
}

/* ============================================
   SEO & ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red-glow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--red-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   IMAGE FRAMES — MOBILE RESPONSIVE ZOOM-OUT
   ============================================ */

/* On mobile: reduce initial zoom-in to be less aggressive */
@media (max-width: 768px) {
  .img-card img {
    transform: scale(1.02);
  }
  .img-card:hover img {
    transform: scale(1.0);
  }
  .img-banner img {
    transform: scale(1.015);
  }
  .img-banner:hover img {
    transform: scale(1.0);
  }
  .content-img {
    transform: scale(1.01);
  }
  .content-img:hover {
    transform: scale(1.0);
  }
}

/* Touch devices: disable hover zoom-out, use tap feedback instead */
@media (hover: none) {
  .img-card img,
  .img-banner img {
    transform: scale(1.0) !important;
  }
  .img-card:active {
    opacity: 0.92;
    transition: opacity 0.15s;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header, .site-nav, .nav-cta, .btn,
  .back-to-top, .promo-code-box { display: none !important; }
  
  body { background: white; color: black; }
  
  .img-banner, .img-card, .page-hero-img {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }
}

/* ============================================
   STRUCTURED DATA VISUAL HINTS
   ============================================ */

/* Article reading time badge */
.read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--white-60);
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 20px;
  padding: 4px 12px;
}

/* Breadcrumb navigation */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--white-60);
  padding: 12px 0;
  margin-bottom: 8px;
}

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

.breadcrumb a:hover {
  color: var(--red-glow);
}

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb .breadcrumb-current {
  color: var(--white-80);
}

/* ============================================
   E-E-A-T / SEO EXPERT SECTION
   ============================================ */
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.eeat-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eeat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.eeat-card:hover {
  border-color: rgba(200,16,46,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200,16,46,0.15);
}
.eeat-card:hover::before { opacity: 1; }

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

.eeat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.eeat-card p {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.6;
  margin: 0;
}

/* SEO Content block */
.seo-content-block {
  background: var(--bg-card);
  border: 1px solid rgba(200,16,46,0.15);
  border-radius: 16px;
  padding: 40px;
}

.seo-content-block h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 40%, var(--red-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-content-block h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 28px 0 10px;
  padding-left: 14px;
  border-left: 3px solid var(--red-primary);
}

.seo-content-block p {
  color: var(--white-80);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.seo-content-block code {
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.85rem;
  color: var(--red-glow);
  font-family: 'Courier New', monospace;
}

/* Keyword tags cloud */
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.keyword-tags span {
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: var(--white-80);
  cursor: default;
  transition: all 0.2s;
}

.keyword-tags span:hover {
  background: rgba(200,16,46,0.2);
  color: var(--white);
  border-color: rgba(200,16,46,0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .eeat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .eeat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .seo-content-block { padding: 24px 18px; }
  .eeat-card { padding: 18px 14px; }
}

@media (max-width: 480px) {
  .eeat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .eeat-icon { font-size: 1.5rem; }
}

/* ============================================
   NAV DESKTOP RESPONSIVE — SHRINK FONT
   ============================================ */
@media (max-width: 1100px) {
  .site-nav a { font-size: 0.76rem; padding: 6px 8px; }
  .header-inner { padding: 10px 16px; }
}

@media (max-width: 900px) {
  .site-nav a:not(.nav-cta) { padding: 6px 6px; font-size: 0.72rem; }
}
