/* ============================================
   PIXOSWIFTRC INVESTIGATIONS — STYLE.CSS
   Detective Noir Social Casino Theme
   joycornerpilot.guru
   © 2026 Pixoswiftrc Investigations Gaming Ltd.
   ============================================ */

/* ============================================
   CSS VARIABLES — DETECTIVE NOIR PALETTE
   ============================================ */
:root {
  /* Base Layers */
  --color-bg-primary: #0b0f14;
  --color-bg-secondary: #141b22;
  --color-bg-elevated: rgba(120, 170, 255, 0.06);
  --color-bg-glass: rgba(20, 27, 34, 0.75);

  /* Accents */
  --color-accent-primary: #4fa3ff;
  --color-accent-secondary: #7b8ca6;
  --color-accent-highlight: #cfd8e3;

  /* Typography */
  --color-text-primary: #e6edf3;
  --color-text-secondary: #aab4c0;
  --color-text-muted: #6c7a89;

  /* Borders */
  --color-border: rgba(79, 163, 255, 0.12);
  --color-border-subtle: rgba(207, 216, 227, 0.06);
  --color-border-glow: rgba(79, 163, 255, 0.25);

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-deep: 0 16px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 0 20px rgba(79, 163, 255, 0.15);
  --shadow-glow-blue-strong: 0 0 32px rgba(79, 163, 255, 0.25);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0b0f14 0%, #141b22 100%);
  --gradient-card: linear-gradient(145deg, rgba(120,170,255,0.08) 0%, rgba(20,27,34,0.6) 100%);
  --gradient-btn: linear-gradient(135deg, #3b8ce8 0%, #4fa3ff 50%, #6ab5ff 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(11,15,20,0.2) 0%, rgba(11,15,20,0.85) 100%);

  /* Typography */
  --font-primary: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
  --spacing-4xl: 120px;

  /* Layout */
  --max-width: 1320px;
  --padding-desktop: 32px;
  --padding-tablet: 24px;
  --padding-mobile: 16px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-xslow: 600ms ease;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  min-height: 100vh;
  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;
}

ul, ol {
  list-style: none;
}

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

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

address {
  font-style: normal;
}

/* ============================================
   LAYOUT — CONTAINER SYSTEM
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-desktop);
}

.section-spacing {
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
}

.section-spacing-sm {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
}

/* ============================================
   ATMOSPHERE OVERLAYS
   ============================================ */
.rain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.rain-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.rain-drop {
  position: absolute;
  top: -20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(79, 163, 255, 0.12));
  animation: rainFall linear infinite;
  will-change: transform;
}

.fog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.fog-layer {
  position: absolute;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(79, 163, 255, 0.025) 0%, transparent 70%);
}

.fog-1 {
  animation: fogDrift 40s linear infinite;
  opacity: 0.6;
}

.fog-2 {
  animation: fogDrift 60s linear infinite reverse;
  opacity: 0.4;
  top: 20%;
}

/* ============================================
   HEADER — DETECTIVE OFFICE NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(11, 15, 20, 0.96);
  box-shadow: var(--shadow-medium), 0 1px 0 var(--color-border-glow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-accent-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--color-accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav-link:hover {
  color: var(--color-text-primary);
  background: var(--color-bg-elevated);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--color-accent-primary);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-text-secondary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--color-bg-secondary);
  border-left: 1px solid var(--color-border);
  padding: var(--spacing-xl) var(--spacing-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

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

.mobile-menu-close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
}

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

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--color-text-primary);
  background: var(--color-bg-elevated);
  border-color: var(--color-border);
}

.mobile-cta {
  margin-top: var(--spacing-sm);
  text-align: center;
}

/* ============================================
   BUTTONS — CASE ACTION BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(79, 163, 255, 0.25), var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 163, 255, 0.4), var(--shadow-medium);
  filter: brightness(1.08);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-accent-highlight);
  border-color: var(--color-border-glow);
  box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
  background: var(--color-bg-elevated);
  border-color: var(--color-accent-primary);
  color: var(--color-accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

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

.btn-full {
  width: 100%;
}

/* ============================================
   GLASS PANEL
   ============================================ */
.glass-panel {
  background: var(--color-bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: var(--spacing-sm);
  text-align: center;
  justify-content: center;
}

.label-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--color-border-glow);
}

.section-label-sm {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: var(--spacing-xs);
}

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

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.7;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35) saturate(0.5);
  transform: scale(1.02);
  transition: transform 20s ease;
}

.hero-section:hover .hero-bg-image {
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 20, 0.8) 0%,
    rgba(11, 15, 20, 0.5) 50%,
    rgba(11, 15, 20, 0.7) 100%
  );
}

.window-flicker {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 60px;
  height: 80px;
  background: rgba(79, 163, 255, 0.03);
  animation: windowFlicker 8s infinite;
  pointer-events: none;
}

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

/* Hero Content */
.hero-content {
  max-width: 560px;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  background: rgba(79, 163, 255, 0.08);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: var(--spacing-md);
}

.case-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-primary);
  animation: pulse 2s infinite;
}

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

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

.hero-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--color-border-glow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

/* Hero Game Preview */
.hero-game-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mini-case-board {
  position: relative;
  background: var(--color-bg-glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow-blue), var(--shadow-deep);
  overflow: visible;
  width: 100%;
  max-width: 380px;
}

.case-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}

.case-board-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.case-board-indicators {
  display: flex;
  gap: 6px;
}

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

.indicator-red { background: rgba(255, 80, 80, 0.5); }
.indicator-amber { background: rgba(255, 185, 80, 0.5); }
.indicator-green { background: rgba(80, 200, 120, 0.5); }

.case-board-body {
  padding: 24px 20px;
}

.slot-preview-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.reel-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  flex: 1;
  max-width: 80px;
}

.reel-symbol {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  opacity: 0.4;
  transition: all var(--transition-base);
}

.reel-symbol.active {
  opacity: 1;
  background: var(--color-bg-elevated);
  border-color: var(--color-border-glow);
  box-shadow: var(--shadow-glow-blue);
}

.case-board-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  justify-content: center;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-primary);
}

.sticky-notes {
  position: absolute;
}

.sticky-note {
  position: absolute;
  background: rgba(255, 240, 180, 0.9);
  color: #2c2400;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 2px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  transform: rotate(-3deg);
  font-family: var(--font-primary);
  white-space: nowrap;
  z-index: 10;
}

.sticky-note-1 {
  top: -18px;
  right: 20px;
  transform: rotate(2deg);
}

.sticky-note-2 {
  bottom: 30px;
  left: -20px;
  transform: rotate(-4deg);
}

.parallax-rain {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 60px,
    rgba(79, 163, 255, 0.015) 60px,
    rgba(79, 163, 255, 0.015) 61px
  );
  pointer-events: none;
  z-index: 2;
}

/* ============================================
   GAME SECTION — EVIDENCE BOARD
   ============================================ */
.game-section {
  position: relative;
  z-index: 3;
}

.game-frame-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.game-evidence-board {
  position: relative;
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-glow);
  border-radius: 20px;
  box-shadow: var(--shadow-glow-blue-strong), var(--shadow-deep);
  overflow: hidden;
  margin-bottom: 16px;
}

.evidence-board-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 5;
  pointer-events: none;
}

.evidence-corner-tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid var(--color-accent-primary);
  border-left: 2px solid var(--color-accent-primary);
  opacity: 0.5;
}

.evidence-corner-tr {
  top: 12px;
  right: 12px;
  border-top: 2px solid var(--color-accent-primary);
  border-right: 2px solid var(--color-accent-primary);
  opacity: 0.5;
}

.evidence-corner-bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid var(--color-accent-primary);
  border-left: 2px solid var(--color-accent-primary);
  opacity: 0.5;
}

.evidence-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid var(--color-accent-primary);
  border-right: 2px solid var(--color-accent-primary);
  opacity: 0.5;
}

.evidence-sticky-cluster {
  position: absolute;
  top: -12px;
  right: 32px;
  z-index: 6;
  display: flex;
  gap: 8px;
  pointer-events: none;
}

.ev-sticky {
  background: rgba(255, 240, 180, 0.88);
  color: #2c2400;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 2px;
  box-shadow: 1px 2px 6px rgba(0,0,0,0.3);
  font-family: var(--font-primary);
  white-space: nowrap;
}

.ev-sticky-1 { transform: rotate(-1deg); }
.ev-sticky-2 { transform: rotate(2.5deg); }
.ev-sticky-3 {
  background: rgba(255, 200, 180, 0.88);
  transform: rotate(-2deg);
}

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

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

.game-scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79,163,255,0.4), transparent);
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

.game-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-sm) 0;
}

.game-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   FEATURES SECTION — CASE SYSTEMS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(79, 163, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

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

.feature-icon {
  margin-bottom: var(--spacing-md);
  display: flex;
}

.feature-title {
  font-family: var(--font-heading);
  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;
  margin-bottom: var(--spacing-sm);
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  background: rgba(79, 163, 255, 0.08);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}

/* ============================================
   ATMOSPHERE STRIP
   ============================================ */
.atmosphere-strip {
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 50%, var(--color-bg-primary) 100%);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.atmosphere-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.atm-quote {
  position: relative;
  padding: var(--spacing-xl);
}

.atm-quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  color: rgba(79, 163, 255, 0.15);
  position: absolute;
  top: -10px;
  left: var(--spacing-lg);
  line-height: 1;
}

.atm-quote p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--color-accent-highlight);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.atm-author {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

/* ============================================
   HOW TO PLAY
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  animation-delay: var(--delay, 0s);
  text-align: center;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: rgba(79, 163, 255, 0.2);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

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

.step-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--color-border-glow);
  align-self: center;
  margin-top: -16px;
}

/* ============================================
   LEGAL STRIP
   ============================================ */
.legal-strip {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.legal-strip-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.legal-stamp {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-highlight);
  border: 2px solid rgba(207, 216, 227, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  flex-shrink: 0;
  opacity: 0.7;
  transform: rotate(-1deg);
}

.legal-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.legal-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.legal-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(79, 163, 255, 0.4);
  transition: color var(--transition-fast);
}

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

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(72px + 80px) 0 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.25) saturate(0.4);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}

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

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

.page-breadcrumb a {
  color: var(--color-accent-primary);
  transition: opacity var(--transition-fast);
}

.page-breadcrumb a:hover {
  opacity: 0.7;
}

.case-file-stamp {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  border: 1px solid var(--color-border-glow);
  border-radius: 2px;
  padding: 4px 10px;
  margin-bottom: var(--spacing-md);
  background: rgba(79, 163, 255, 0.06);
}

.case-file-stamp.confidential {
  color: #d4a84b;
  border-color: rgba(212, 168, 75, 0.35);
  background: rgba(212, 168, 75, 0.06);
}

.case-file-stamp.priority {
  color: #ff8f6b;
  border-color: rgba(255, 143, 107, 0.35);
  background: rgba(255, 143, 107, 0.06);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

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

/* ============================================
   ABOUT PAGE
   ============================================ */
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

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

.content-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.about-visual-panel {
  padding: 0;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.visual-caption {
  padding: 12px 20px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  border-top: 1px solid var(--color-border-subtle);
}

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

.value-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  animation-delay: var(--delay, 0s);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-blue);
}

.value-icon {
  margin-bottom: var(--spacing-md);
}

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

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

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

.team-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  animation-delay: var(--delay, 0s);
  transition: all var(--transition-base);
}

.team-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-3px);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.avatar-initials {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-primary);
}

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

.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.team-bio {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--spacing-2xl);
  align-items: start;
}

.contact-form-panel {
  padding: var(--spacing-xl);
}

.form-header {
  margin-bottom: var(--spacing-xl);
}

.form-case-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: var(--spacing-xs);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  -webkit-appearance: none;
}

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

.form-input:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  background: rgba(79, 163, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(79, 163, 255, 0.1);
}

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

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

.form-error {
  display: block;
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 6px;
  min-height: 18px;
}

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

.form-success[hidden] {
  display: none;
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.success-stamp {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--color-accent-primary);
  border: 3px solid var(--color-border-glow);
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: var(--spacing-md);
  transform: rotate(-3deg);
  opacity: 0.8;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

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

.success-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-card {
  padding: var(--spacing-lg);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border-subtle);
}

.contact-address-block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-address-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-address-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-address-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.contact-address-item p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-email-link {
  font-size: 14px;
  color: var(--color-accent-primary);
  transition: opacity var(--transition-fast);
}

.contact-email-link:hover {
  opacity: 0.7;
}

.contact-responsible-card {
  border-color: rgba(79, 163, 255, 0.2);
}

.responsible-badge {
  display: flex;
  margin-bottom: var(--spacing-sm);
}

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

.contact-responsible-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--spacing-md);
}

/* ============================================
   LEGAL CONTENT PAGES
   ============================================ */
.legal-content-section {
  position: relative;
  z-index: 3;
}

.legal-content-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
}

.legal-sidebar-inner {
  padding: var(--spacing-lg);
}

.sidebar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border-subtle);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-link {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sidebar-link:hover {
  color: var(--color-accent-primary);
  background: rgba(79, 163, 255, 0.06);
}

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

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

.legal-doc-stamp {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: var(--spacing-sm);
  opacity: 0.6;
}

.legal-doc-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.legal-doc-intro {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

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

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

.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-subtle);
}

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

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.legal-list li {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.legal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent-primary);
  font-size: 12px;
  top: 4px;
}

.legal-ordered {
  list-style: none;
  counter-reset: legal-counter;
}

.legal-ordered li {
  counter-increment: legal-counter;
}

.legal-ordered li::before {
  content: counter(legal-counter) '.';
  font-weight: 600;
  color: var(--color-accent-primary);
  font-size: 13px;
  top: 2px;
}

.legal-highlight-box {
  background: rgba(79, 163, 255, 0.06);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.legal-highlight-box p {
  margin-bottom: 0;
  font-size: 14px;
}

.legal-contact-block {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  border: 1px solid var(--color-border-subtle);
}

.legal-contact-block p {
  font-size: 14px;
  margin-bottom: 4px;
}

.legal-contact-block a {
  color: var(--color-accent-primary);
  font-size: 14px;
  transition: opacity var(--transition-fast);
}

.legal-contact-block a:hover {
  opacity: 0.7;
}

/* ============================================
   RESPONSIBLE GAMING PAGE
   ============================================ */
.responsible-notice-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  background: rgba(79, 163, 255, 0.06);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.responsible-notice-banner strong {
  display: block;
  font-size: 15px;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.responsible-notice-banner p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--spacing-2xl);
}

.responsible-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  animation-delay: var(--delay, 0s);
  transition: all var(--transition-base);
}

.responsible-card.warning-card {
  border-color: rgba(207, 216, 227, 0.15);
}

.responsible-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-3px);
}

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

.responsible-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

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

.responsible-list li {
  font-size: 14px;
  color: var(--color-text-secondary);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.responsible-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent-primary);
  font-size: 11px;
  top: 4px;
}

.responsible-tips-section {
  margin-bottom: var(--spacing-2xl);
}

.responsible-tips-section .section-title {
  margin-bottom: var(--spacing-xl);
}

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

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.tip-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: rgba(79, 163, 255, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.tip-content h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.tip-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.resources-section {
  margin-bottom: var(--spacing-2xl);
}

.resources-section .section-title {
  text-align: left;
  margin-bottom: var(--spacing-sm);
}

.resources-section .section-subtitle {
  text-align: left;
  margin: 0 0 var(--spacing-xl);
}

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

.resource-card {
  padding: var(--spacing-lg);
}

.resource-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.resource-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.resource-url {
  font-size: 12px;
  color: var(--color-accent-primary);
  font-family: monospace;
}

.contact-support-cta .cta-panel {
  text-align: center;
  padding: var(--spacing-xl);
  max-width: 560px;
  margin: 0 auto;
}

.cta-panel h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.cta-panel p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   RULES PAGE — SYMBOL GUIDE
   ============================================ */
.rules-symbols-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: var(--spacing-sm);
}

.symbol-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
}

.symbol-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.symbol-rule-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--spacing-2xl);
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

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

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.social-link:hover {
  border-color: var(--color-border-glow);
  background: rgba(79, 163, 255, 0.08);
}

.footer-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

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

.footer-nav-link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
}

.footer-nav-link:hover {
  color: var(--color-accent-primary);
}

.footer-address p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer-email {
  font-size: 14px;
  color: var(--color-accent-primary);
  margin-top: var(--spacing-xs);
  display: block;
  transition: opacity var(--transition-fast);
}

.footer-email:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--spacing-lg) 0;
}

.footer-bottom-legal {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.age-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-accent-primary);
  background: rgba(79, 163, 255, 0.06);
}

.footer-legal-text {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
/* ENDFILE */