/* =====================================================
   DETECTIVE SLOT — STYLE.CSS
   moonaclicksprnt.com
   ===================================================== */

/* ─────────────────────────────────────────────────────
   1. CSS VARIABLES
   ───────────────────────────────────────────────────── */
:root {
  /* Color Palette */
  --color-bg-primary: #070A0F;
  --color-bg-secondary: #0E141B;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-surface-hover: rgba(255, 255, 255, 0.07);
  --color-surface-elevated: rgba(255, 255, 255, 0.06);

  /* Accent Colors */
  --color-gold: #C9A24A;
  --color-gold-dark: #8C6B2F;
  --color-gold-light: #E2BA68;
  --color-green: #2F6F5E;
  --color-green-light: #3D8F78;

  /* Text Colors */
  --color-text-primary: #EDEDED;
  --color-text-secondary: #B8B8B8;
  --color-text-muted: #7A7A7A;

  /* Borders */
  --color-border: rgba(201, 162, 74, 0.15);
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-gold: rgba(201, 162, 74, 0.35);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #C9A24A 0%, #8C6B2F 100%);
  --gradient-gold-hover: linear-gradient(135deg, #E2BA68 0%, #A07A38 100%);
  --gradient-dark: linear-gradient(180deg, #0E141B 0%, #070A0F 100%);
  --gradient-hero: linear-gradient(135deg, #070A0F 0%, #0E141B 50%, #0A0F16 100%);
  --gradient-surface: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 20px rgba(201, 162, 74, 0.2);
  --shadow-gold-strong: 0 0 40px rgba(201, 162, 74, 0.3);

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --spacing-2xl: 100px;

  /* Layout */
  --container-max: 1320px;
  --header-height: 80px;
  --border-radius: 16px;
  --border-radius-sm: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-cinematic: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─────────────────────────────────────────────────────
   2. RESET / NORMALIZE
   ───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ─────────────────────────────────────────────────────
   3. LAYOUT SYSTEM
   ───────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-spacing {
  padding: var(--spacing-2xl) 0;
}

/* ─────────────────────────────────────────────────────
   4. FILM GRAIN + ATMOSPHERE
   ───────────────────────────────────────────────────── */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.dust-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────
   5. HEADER
   ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(7, 10, 15, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(7, 10, 15, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(201, 162, 74, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(201, 162, 74, 0.4));
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.3px;
}

.logo-accent {
  color: var(--color-gold);
}

/* Navigation */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-secondary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: rgba(14, 20, 27, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--color-border);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xl) var(--spacing-lg);
  gap: var(--spacing-lg);
  transform: translateX(100%);
  transition: transform var(--transition-cinematic);
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  font-size: 20px;
  color: var(--color-text-muted);
  padding: 8px;
  transition: color var(--transition-fast);
}

.mobile-menu-close:hover {
  color: var(--color-gold);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.mobile-cta {
  margin-top: auto;
  text-align: center;
}

/* Mobile overlay backdrop */
.mobile-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ─────────────────────────────────────────────────────
   6. BUTTON SYSTEM
   ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-primary {
  background: var(--gradient-gold);
  color: #070A0F;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-strong);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
}

.btn-outline:hover {
  background: rgba(201, 162, 74, 0.08);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-small {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: var(--border-radius-sm);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────
   7. TYPOGRAPHY
   ───────────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.title-accent {
  color: var(--color-gold);
}

.section-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.body-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────
   8. HERO SECTION
   ───────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 162, 74, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(47, 111, 94, 0.04) 0%, transparent 60%);
}

.ambient-light {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
}

.ambient-light--left {
  left: -100px;
  top: 20%;
  background: var(--color-gold);
}

.ambient-light--right {
  right: -50px;
  bottom: 20%;
  background: var(--color-green);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  padding: var(--spacing-xl) var(--spacing-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 74, 0.1);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: badgePulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-primary);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: -1px;
}

.headline-accent {
  color: var(--color-gold);
  display: block;
}

.hero-subtext {
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

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

.stat-value {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* Hero Visual / Slot Showcase */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-showcase {
  position: relative;
  width: 380px;
  height: 440px;
}

.slot-frame {
  position: relative;
  background: rgba(14, 20, 27, 0.9);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  padding: var(--spacing-md);
  box-shadow: var(--shadow-lg), inset 0 0 40px rgba(201, 162, 74, 0.04);
  width: 100%;
}

.slot-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-subtle);
}

.slot-case-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
}

.slot-status-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red { background: #FF5F57; }
.dot--amber { background: #FEBC2E; }
.dot--green { background: #28C840; }

.slot-reels-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: var(--spacing-md);
}

.reel-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(7, 10, 15, 0.6);
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-xs);
  border: 1px solid var(--color-border-subtle);
}

.reel-column--center {
  border-color: rgba(201, 162, 74, 0.25);
  box-shadow: 0 0 15px rgba(201, 162, 74, 0.1);
}

.reel-symbol {
  font-size: 28px;
  text-align: center;
  padding: 8px 0;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
}

.reel-symbol--active {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(201, 162, 74, 0.4));
}

.reel-symbol--gold {
  filter: drop-shadow(0 0 12px rgba(201, 162, 74, 0.6));
}

.slot-win-banner {
  background: rgba(201, 162, 74, 0.12);
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: var(--border-radius-sm);
  padding: 10px var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.win-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  text-transform: uppercase;
}

.win-amount {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
}

.slot-frame-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-xl);
  box-shadow: inset 0 0 60px rgba(201, 162, 74, 0.06);
  pointer-events: none;
}

.magnifier-overlay {
  position: absolute;
  top: -20px;
  right: -30px;
  z-index: 3;
}

.magnifier-ring {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(201, 162, 74, 0.3);
  border-radius: 50%;
  position: relative;
}

.magnifier-ring::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -8px;
  width: 28px;
  height: 4px;
  background: rgba(201, 162, 74, 0.4);
  border-radius: 2px;
  transform: rotate(45deg);
}

.case-pin {
  position: absolute;
  background: rgba(201, 162, 74, 0.15);
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

.case-pin--1 { bottom: 20px; left: -40px; }
.case-pin--2 { top: 60px; left: -50px; }
.case-pin--3 { bottom: 80px; right: -50px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 12px;
  letter-spacing: 1px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────
   9. GAME SECTION
   ───────────────────────────────────────────────────── */
.game-hub-container {
  position: relative;
}

.game-hub-inner {
  position: relative;
  background: rgba(14, 20, 27, 0.8);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.game-iframe-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.game-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-ambient-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.04), transparent);
  animation: ambientSweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.game-hub-footer {
  padding: var(--spacing-md) var(--spacing-lg);
  border-top: 1px solid var(--color-border-subtle);
  background: rgba(7, 10, 15, 0.4);
}

.game-info-row {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.game-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.info-value--active {
  color: #28C840;
}

/* ─────────────────────────────────────────────────────
   10. FEATURE CARDS
   ───────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.feature-card {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

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

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201, 162, 74, 0.1);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.feature-icon {
  font-size: 24px;
}

.feature-title {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.feature-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────
   11. GLASS CARD
   ───────────────────────────────────────────────────── */
.glass-card {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─────────────────────────────────────────────────────
   12. ATMOSPHERE SECTION
   ───────────────────────────────────────────────────── */
.atmosphere-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.atmosphere-content .section-title {
  margin-bottom: var(--spacing-md);
}

.atmosphere-content .section-desc {
  margin-bottom: var(--spacing-lg);
  max-width: 100%;
}

.evidence-board {
  position: relative;
  height: 360px;
  background: rgba(14, 20, 27, 0.6);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-lg);
  overflow: hidden;
}

.evidence-item {
  position: absolute;
  background: rgba(7, 10, 15, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.evidence-item:hover {
  transform: scale(1.05);
}

.ev-icon { font-size: 20px; }
.ev-label { font-size: 10px; white-space: nowrap; }

.ev-1 { top: 20px; left: 20px; }
.ev-2 { top: 80px; right: 30px; }
.ev-3 { bottom: 80px; left: 40px; }
.ev-4 { bottom: 20px; right: 20px; }
.ev-5 { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.ev-highlight {
  background: rgba(201, 162, 74, 0.1);
  border-color: rgba(201, 162, 74, 0.3);
  color: var(--color-gold);
}

.ev-highlight .ev-label {
  color: var(--color-gold);
}

/* ─────────────────────────────────────────────────────
   13. RG BANNER
   ───────────────────────────────────────────────────── */
.rg-banner-section {
  padding: var(--spacing-lg) 0;
  background: rgba(14, 20, 27, 0.4);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.rg-banner {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.rg-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.rg-content { flex: 1; }

.rg-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────
   14. FOOTER
   ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

.footer-logo {
  margin-bottom: var(--spacing-md);
  display: inline-flex;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--spacing-xs);
}

.footer-disclaimer {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-nav-title {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.footer-copy-sub {
  font-size: 12px;
  color: rgba(122, 122, 122, 0.6);
}

/* ─────────────────────────────────────────────────────
   15. PAGE HEROES
   ───────────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  text-align: center;
}

.page-hero-ambient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.5px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────
   16. ABOUT PAGE
   ───────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-values-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.value-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-subtle);
}

.value-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.value-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 15px;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.timeline-marker {
  text-align: right;
  padding-right: var(--spacing-lg);
  position: relative;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 162, 74, 0.4);
}

.timeline-year {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
}

.timeline-content {
  padding: var(--spacing-md) var(--spacing-lg);
}

.timeline-content h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.timeline-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  background: rgba(201, 162, 74, 0.1);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.team-avatar-icon { font-size: 28px; }

.team-name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
}

.team-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* CTA Block */
.cta-block {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: var(--gradient-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.5;
}

.cta-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.cta-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
}

/* ─────────────────────────────────────────────────────
   17. LOBBY PAGE
   ───────────────────────────────────────────────────── */
.lobby-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.sidebar-card {
  margin-bottom: var(--spacing-md);
}

.sidebar-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}

.case-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.case-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  color: var(--color-text-muted);
}

.detail-value {
  color: var(--color-text-primary);
  font-weight: 500;
}

.gold-text { color: var(--color-gold) !important; }

.active-status {
  color: #28C840;
}

.bonus-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-subtle);
}

.bonus-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bonus-icon { font-size: 20px; flex-shrink: 0; }

.bonus-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.bonus-item p {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.sidebar-card--rg {
  text-align: center;
}

.rg-sidebar-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.rg-link {
  display: inline-flex;
}

.game-container-lobby {
  background: rgba(14, 20, 27, 0.8);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
}

.game-container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border-subtle);
  background: rgba(7, 10, 15, 0.4);
}

.game-container-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.case-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
  background: rgba(201, 162, 74, 0.1);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  text-transform: uppercase;
}

.game-container-title h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.icon-btn:hover {
  color: var(--color-gold);
  border-color: var(--color-border);
}

.game-iframe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.game-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

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

/* ─────────────────────────────────────────────────────
   18. CONTACT PAGE
   ───────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
}

.contact-item-icon { font-size: 24px; flex-shrink: 0; }

.contact-item strong {
  display: block;
  font-size: 15px;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}

.contact-form-card {
  position: relative;
}

.form-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

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

.form-input {
  width: 100%;
  background: rgba(7, 10, 15, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  color: var(--color-text-primary);
  font-size: 14px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.1);
}

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

.form-select {
  cursor: pointer;
}

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

.form-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--spacing-sm);
}

.form-disclaimer a {
  color: var(--color-gold);
}

.form-success {
  text-align: center;
  padding: var(--spacing-xl);
}

.success-icon { font-size: 40px; display: block; margin-bottom: var(--spacing-md); }

.form-success h4 {
  font-family: var(--font-primary);
  font-size: 22px;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.form-success p {
  color: var(--color-text-secondary);
  font-size: 14px;
}

/* ─────────────────────────────────────────────────────
   19. LEGAL PAGES
   ───────────────────────────────────────────────────── */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.toc-card {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.toc-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--spacing-md);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.toc-list a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.toc-list a:hover {
  color: var(--color-gold);
  padding-left: 6px;
}

.legal-card {
  padding: var(--spacing-xl);
}

.legal-notice {
  background: rgba(201, 162, 74, 0.08);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.legal-block {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  padding-top: var(--spacing-sm);
}

.legal-block h3 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gold);
  margin: var(--spacing-md) 0 var(--spacing-xs);
}

.legal-block p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.legal-block ul, .legal-block ol {
  list-style: disc;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.legal-block li {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ─────────────────────────────────────────────────────
   20. RESPONSIBLE GAMING PAGE
   ───────────────────────────────────────────────────── */
.rg-social-notice {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  background: rgba(47, 111, 94, 0.08);
  border-color: rgba(47, 111, 94, 0.2);
}

.rg-social-icon { font-size: 36px; flex-shrink: 0; }

.rg-social-content h2 {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.rg-social-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.rg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.rg-card {
  position: relative;
}

.rg-card-icon {
  font-size: 32px;
  margin-bottom: var(--spacing-md);
}

.rg-card h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.rg-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.rg-principles {
  margin-bottom: var(--spacing-xl);
}

.rg-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.rg-principle-card h3 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--spacing-xs);
}

.rg-principle-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.rg-warning {
  border-color: rgba(201, 162, 74, 0.2);
  background: rgba(201, 162, 74, 0.04);
}

.rg-warning h3 {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.rg-warning p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.rg-warning-list {
  list-style: disc;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.rg-warning-list li {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.rg-resources {
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-sm);
}

.rg-resources li {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.rg-resources a {
  color: var(--color-gold);
  transition: opacity var(--transition-fast);
}

.rg-resources a:hover {
  opacity: 0.8;
}

/* ─────────────────────────────────────────────────────
   21. RULES PAGE
   ───────────────────────────────────────────────────── */
.rules-stat-row {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.rules-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(201, 162, 74, 0.08);
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-md);
  min-width: 80px;
}

.rules-stat-value {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.rules-stat-label {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.symbols-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
}

.symbol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.symbol-cell {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(14, 20, 27, 0.6);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-sm);
}

.sym-icon { font-size: 24px; flex-shrink: 0; }

.symbol-cell strong {
  display: block;
  font-size: 14px;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.sym-value {
  font-size: 11px;
  color: var(--color-gold);
}
/* =====================================================
   END OF STYLE.CSS
   ===================================================== */