/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --midnight-black: #0B0F14;
  --deep-navy: #121826;
  --smoke-grey: #1F2933;
  --detective-gold: #D4AF37;
  --detective-gold-dim: #B8961F;
  --detective-gold-glow: rgba(212, 175, 55, 0.3);
  --detective-gold-subtle: rgba(212, 175, 55, 0.1);
  --evidence-red: #8B1E1E;
  --evidence-red-dim: rgba(139, 30, 30, 0.3);
  --cold-blue: #3B82F6;
  --cold-blue-dim: rgba(59, 130, 246, 0.2);
  --text-primary: #F5F5F5;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --glass-bg: rgba(18, 24, 38, 0.7);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-border-hover: rgba(212, 175, 55, 0.35);
  --container-max: 1400px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--midnight-black);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--detective-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text-primary);
}

ul {
  list-style: none;
}

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

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

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }

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

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

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--detective-gold), var(--detective-gold-dim));
  color: var(--midnight-black);
  box-shadow: 0 4px 20px var(--detective-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  color: var(--midnight-black);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-icon {
  font-size: 1.1em;
}

/* ========================================
   HEADER
======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

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

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

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

.header-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--deep-navy);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

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

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

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--midnight-black) 0%, var(--deep-navy) 50%, var(--midnight-black) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, var(--midnight-black) 70%);
  z-index: 2;
}

.hero-fog {
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.hero-fog-1 {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: fogDrift 25s linear infinite;
}

.hero-fog-2 {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent, rgba(59, 130, 246, 0.06), transparent);
  animation: fogDrift 35s linear infinite reverse;
  top: 30%;
}

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

.hero-rain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(transparent 95%, rgba(59, 130, 246, 0.08) 95%),
    linear-gradient(90deg, transparent 98%, rgba(59, 130, 246, 0.04) 98%);
  background-size: 3px 40px, 80px 3px;
  animation: rainFall 0.8s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes rainFall {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 40px, 0 0; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--detective-gold-subtle);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--detective-gold);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 650px;
  margin: 0 auto 28px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-disclaimer {
  background: rgba(139, 30, 30, 0.15);
  border: 1px solid rgba(139, 30, 30, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  margin: 0 auto 32px;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-disclaimer p {
  font-size: 0.85rem;
  color: #E5A5A5;
  line-height: 1.6;
}

.hero-disclaimer strong {
  color: #F5C4C4;
}

.hero-cta {
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

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

/* ========================================
   PAGE HERO (Sub-pages)
======================================== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--midnight-black) 0%, var(--deep-navy) 100%);
}

.page-hero-sm {
  min-height: 40vh;
}

.page-hero .hero-content {
  padding: 140px 0 60px;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--detective-gold-subtle);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--detective-gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.section-title {
  margin-bottom: 16px;
}

.section-title.left-align {
  text-align: left;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========================================
   GAME SECTION
======================================== */
.game-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--midnight-black) 0%, var(--deep-navy) 30%, var(--midnight-black) 100%);
  position: relative;
}

.game-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.game-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, var(--detective-gold-glow) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: 0.5;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.game-container {
  position: relative;
  z-index: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 
    0 0 40px rgba(212, 175, 55, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.game-info-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.game-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  transition: all var(--transition);
}

.game-info-item:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.info-icon {
  font-size: 1.2rem;
}

.info-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
  padding: 100px 0;
  background: var(--deep-navy);
  position: relative;
}

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--detective-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* ========================================
   EVIDENCE SECTION
======================================== */
.evidence-section {
  padding: 100px 0;
  background: var(--midnight-black);
}

.evidence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.evidence-content .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.evidence-content .section-title {
  margin-bottom: 32px;
}

.evidence-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.evidence-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.evidence-marker {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: var(--detective-gold);
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 12px var(--detective-gold-glow);
}

.evidence-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.evidence-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.evidence-board-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2A1F12 0%, #1A1308 100%);
  border: 3px solid #3D2E18;
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.board-string {
  position: absolute;
  background: #8B1E1E;
  opacity: 0.6;
}

.board-string-1 {
  width: 200px;
  height: 1px;
  top: 35%;
  left: 15%;
  transform: rotate(25deg);
}

.board-string-2 {
  width: 160px;
  height: 1px;
  top: 55%;
  left: 30%;
  transform: rotate(-15deg);
}

.board-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--evidence-red);
  box-shadow: 0 0 8px rgba(139, 30, 30, 0.6);
}

.pin-1 { top: 20%; left: 20%; }
.pin-2 { top: 30%; right: 25%; }
.pin-3 { top: 60%; left: 35%; }
.pin-4 { top: 75%; right: 30%; }

.board-note {
  position: absolute;
  background: rgba(245, 245, 220, 0.9);
  color: #1A1308;
  padding: 10px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 2px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  line-height: 1.4;
}

.board-note small {
  font-weight: 400;
  opacity: 0.7;
}

.note-1 { top: 12%; left: 10%; transform: rotate(-3deg); }
.note-2 { top: 18%; right: 12%; transform: rotate(2deg); }
.note-3 { top: 55%; left: 10%; transform: rotate(-1deg); }
.note-4 { bottom: 12%; right: 15%; transform: rotate(3deg); }

.board-stamp {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%) rotate(-12deg);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--evidence-red);
  border: 3px solid var(--evidence-red);
  padding: 6px 20px;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

/* ========================================
   SUSPECTS SECTION
======================================== */
.suspects-section {
  padding: 100px 0;
  background: var(--deep-navy);
}

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

.suspect-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.suspect-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.suspect-mugshot {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--smoke-grey);
  border-radius: var(--radius-md);
  border: 2px solid var(--glass-border);
}

.suspect-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.suspect-info p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.suspect-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--detective-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  padding: 100px 0;
  background: var(--midnight-black);
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--deep-navy), var(--smoke-grey));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}

.cta-fog {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

.cta-desc {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--evidence-red);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--detective-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--detective-gold);
}

.footer-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 24px 0;
  text-align: center;
}

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

/* ========================================
   CONTENT PAGES (About, Legal, etc.)
======================================== */
.content-section {
  padding: 80px 0 100px;
  background: var(--midnight-black);
}

.content-layout {
  max-width: 900px;
  margin: 0 auto;
}

.content-main h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  color: var(--detective-gold);
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.content-main strong {
  color: var(--text-primary);
}

.content-main em {
  color: var(--detective-gold);
  font-style: italic;
}

/* Values Grid (About page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

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

.value-card h4 {
  font-family: var(--font-display);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.disclaimer-box {
  background: rgba(139, 30, 30, 0.12);
  border: 1px solid rgba(139, 30, 30, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.disclaimer-box p {
  color: #D4A0A0;
  font-size: 0.95rem;
  margin: 0;
}

/* ========================================
   LEGAL CONTENT
======================================== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--detective-gold);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-content a {
  color: var(--detective-gold);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--text-primary);
}

/* ========================================
   RESPONSIBLE GAMING PAGE
======================================== */
.responsible-highlight {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
}

.responsible-highlight h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.rg-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 40px;
}

.rg-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.rg-card h4 {
  font-family: var(--font-body);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.rg-card ul {
  margin: 0;
  list-style: none;
}

.rg-card ul li {
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.rg-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.rg-card-green {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.rg-card-green h4 { color: #4ADE80; }
.rg-card-green ul li::before { color: #4ADE80; }

.rg-card-red {
  background: rgba(139, 30, 30, 0.12);
  border: 1px solid rgba(139, 30, 30, 0.3);
}

.rg-card-red h4 { color: #E57373; }
.rg-card-red ul li::before { color: #E57373; }

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

.resource-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.resource-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--detective-gold);
}

.resource-card p {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  color: var(--detective-gold);
  margin-bottom: 12px;
}

.contact-form-wrapper > p {
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--smoke-grey);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--detective-gold);
  box-shadow: 0 0 0 3px var(--detective-gold-subtle);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

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

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

.form-success h3 {
  margin-bottom: 8px;
  color: var(--detective-gold);
}

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

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--detective-gold);
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.4rem;
  margin-top: 2px;
}

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

.contact-detail p {
  font-size: 0.88rem;
  margin: 0;
}

.quick-links li {
  margin-bottom: 10px;
}

.quick-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.quick-links a:hover {
  color: var(--detective-gold);
}

/* ========================================
   ANIMATIONS (SCROLL REVEAL)
======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET
======================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .evidence-content .section-title {
    text-align: center;
  }

  .evidence-content .section-tag {
    text-align: center;
    display: block;
  }

  .evidence-visual {
    order: -1;
  }

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

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

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

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

  .rg-cards {
    grid-template-columns: 1fr;
  }

  .resource-cards {
    grid-template-columns: 1fr;
  }

  .game-section,
  .features-section,
  .evidence-section,
  .suspects-section,
  .cta-section {
    padding: 70px 0;
  }
}

/* ========================================
   RESPONSIVE — MOBILE
======================================== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-content {
    padding: 100px 0 80px;
  }

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

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

  .cta-card {
    padding: 50px 28px;
  }

  .game-container {
    border-radius: var(--radius-md);
  }

  .game-info-bar {
    gap: 12px;
  }

  .game-info-item {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .game-section,
  .features-section,
  .evidence-section,
  .suspects-section,
  .cta-section {
    padding: 50px 0;
  }

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

  .evidence-board-card {
    max-width: 340px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .suspect-card {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .game-info-bar {
    flex-direction: column;
    align-items: center;
  }

  .board-stamp {
    font-size: 1.1rem;
  }

  .evidence-board-card {
    max-width: 280px;
    padding: 24px;
  }

  .board-note {
    font-size: 0.6rem;
    padding: 6px 8px;
  }
}
/* ENDFILE */