/* ==========================================================================
   FOREVER YEARS - GAME STUDIO STYLESHEET
   Aesthetics: Deep Oceanic Abyss & Stellar Nebula Sci-Fi
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #030712;
  --bg-secondary: #081120;
  --bg-tertiary: #0e1a2f;
  
  --surface-glass: rgba(12, 23, 42, 0.72);
  --surface-glass-border: rgba(0, 240, 255, 0.16);
  --surface-glass-hover: rgba(18, 34, 62, 0.85);

  /* Primary Accent: Oceanic Bioluminescent Cyan */
  --cyan-400: #38bdf8;
  --cyan-primary: #00f0ff;
  --cyan-glow: rgba(0, 240, 255, 0.45);
  --cyan-dim: rgba(0, 240, 255, 0.12);

  /* Secondary Accent: Deep Space Violet */
  --violet-400: #a78bfa;
  --violet-primary: #8b5cf6;
  --violet-glow: rgba(139, 92, 246, 0.45);
  --violet-dim: rgba(139, 92, 246, 0.15);

  /* Warm Solar Accent */
  --amber-primary: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.35);

  /* Neutrals */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout & Geometry */
  --container-max: 1240px;
  --nav-height: 76px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #08172c 0%, #030712 65%, #010307 100%);
}

/* Particle Canvas Backdrop */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, .brand-name, .section-tag {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.15;
}

p {
  color: var(--text-secondary);
}

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

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

.gradient-text-cyan {
  background: linear-gradient(135deg, #ffffff 15%, var(--cyan-primary) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-violet {
  background: linear-gradient(135deg, #ffffff 15%, var(--violet-400) 50%, var(--violet-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(3, 7, 18, 0.92);
  border-bottom-color: rgba(0, 240, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 101;
}

.logo-symbol {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-symbol.small {
  width: 24px;
  height: 24px;
}

.symbol-core {
  width: 12px;
  height: 12px;
  background: var(--cyan-primary);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--cyan-primary);
  animation: pulse-core 3s infinite alternate;
}

.symbol-ring {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px dashed rgba(0, 240, 255, 0.6);
  border-radius: 50%;
  animation: rotate-ring 14s linear infinite;
}

@keyframes pulse-core {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 24px var(--cyan-primary); }
}

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

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

.brand-name {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  font-weight: 800;
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  color: var(--cyan-400);
  margin-top: -2px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

.nav-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  background: rgba(0, 240, 255, 0.15);
  color: var(--cyan-primary);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  letter-spacing: 0.04em;
}

.pill-violet {
  background: rgba(139, 92, 246, 0.18);
  color: var(--violet-400);
  border-color: rgba(139, 92, 246, 0.35);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.hamburger-bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  background: rgba(3, 7, 18, 0.98);
  backdrop-filter: blur(20px);
  padding: 2.5rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  z-index: 99;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.85rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 1.4rem;
  font-size: 0.9375rem;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #0099cc 100%);
  color: #030712;
  box-shadow: 0 4px 18px rgba(0, 240, 255, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #40f4ff 0%, #00b4e6 100%);
  box-shadow: 0 6px 26px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-violet {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.4);
}

.btn-violet:hover {
  background: linear-gradient(135deg, #9d74f8 0%, #7579f3 100%);
  box-shadow: 0 6px 26px rgba(139, 92, 246, 0.65);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--surface-glass-border);
}

.btn-outline:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan-primary);
  color: var(--cyan-primary);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  padding: 0.85rem 1.25rem;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
}

.pulse-glow {
  animation: btn-glow 3s infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 18px rgba(0, 240, 255, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(0, 240, 255, 0.65); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 6rem;
  overflow: hidden;
  z-index: 1;
}

/* Ambient glow spheres */
.hero-glow-sphere {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
}

.hero-glow-sphere.cyan {
  top: 10%;
  left: 15%;
  background: var(--cyan-primary);
}

.hero-glow-sphere.violet {
  top: 25%;
  right: 15%;
  background: var(--violet-primary);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(12, 23, 42, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 0.4rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--cyan-400);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-primary);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  max-width: 950px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 780px;
  margin-bottom: 2.75rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Metrics */
.hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  padding: 1.5rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  flex-wrap: wrap;
}

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

.metric-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

/* ==========================================================================
   GAMES SHOWCASE SECTION
   ========================================================================== */

.games-section {
  position: relative;
  padding: 6rem 0;
  z-index: 1;
}

.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: var(--cyan-400);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

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

/* Showcase Cards */
.game-showcase-card {
  position: relative;
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 4.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.game-showcase-card:hover {
  border-color: rgba(0, 240, 255, 0.35);
  transform: translateY(-4px);
}

.showcase-galactic:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.showcase-glow {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.showcase-glow.violet-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
}

/* Topbar Ribbon */
.showcase-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
}

.status-badge.upcoming {
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan-primary);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.status-badge.released {
  background: rgba(139, 92, 246, 0.15);
  color: var(--violet-400);
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.pulse-dot-cyan {
  width: 8px;
  height: 8px;
  background: var(--cyan-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-primary);
  animation: pulse-dot 1.8s infinite;
}

.pulse-dot-violet {
  width: 8px;
  height: 8px;
  background: var(--violet-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--violet-primary);
  animation: pulse-dot 1.8s infinite;
}

.genre-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.tag-violet {
  border-color: rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
}

/* Grid Layout */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

/* Media Column */
.showcase-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.media-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #02050b;
}

.showcase-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.media-container:hover .showcase-hero-img {
  transform: scale(1.02);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
  backdrop-filter: blur(2px);
}

.media-container:hover .media-overlay {
  opacity: 1;
}

.btn-play-zoom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid var(--cyan-primary);
  color: var(--cyan-primary);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.4);
  transition: all var(--transition-fast);
}

.btn-play-zoom:hover {
  background: var(--cyan-primary);
  color: #030712;
  transform: scale(1.05);
}

/* Screenshot Strip */
.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.strip-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.strip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strip-thumb:hover {
  border-color: var(--cyan-primary);
  transform: translateY(-2px);
}

.thumb-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  background: rgba(3, 7, 18, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.strip-thumb:hover .thumb-icon {
  opacity: 1;
}

.gallery-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -0.25rem;
  font-family: var(--font-mono);
}

/* Steam Boxart Display (Galactic Dominion) */
.steam-capsule-display {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.steam-boxart {
  width: 140px;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.steam-boxart-caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.steam-boxart-caption strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.steam-boxart-caption span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.steam-direct-link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--violet-400);
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.steam-direct-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Details Column */
.showcase-info {
  display: flex;
  flex-direction: column;
}

.game-title {
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.tagline-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cyan-400);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.showcase-galactic .tagline-quote {
  color: var(--violet-400);
}

.game-synopsis {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

/* Pillars List */
.feature-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  flex-shrink: 0;
}

.pillar-icon-violet {
  background: var(--violet-dim);
  border-color: rgba(139, 92, 246, 0.35);
  color: var(--violet-400);
}

.pillar-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pillar-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.pillar-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTAs inside card */
.showcase-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Specs Footer */
.spec-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.spec-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  color: var(--text-secondary);
}

/* ==========================================================================
   STUDIO PHILOSOPHY SECTION
   ========================================================================== */

.about-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 17, 32, 0.7) 50%, transparent 100%);
  z-index: 1;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.philosophy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.3);
}

.card-icon-wrap {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.card-icon-wrap.cyan-wrap {
  background: var(--cyan-dim);
  border-color: rgba(0, 240, 255, 0.35);
  color: var(--cyan-primary);
}

.card-icon-wrap.violet-wrap {
  background: var(--violet-dim);
  border-color: rgba(139, 92, 246, 0.35);
  color: var(--violet-400);
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.card-body {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  position: relative;
  background: #02050b;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 3rem;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-about {
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.6;
}

.copyright {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.footer-heading {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-links li a:hover {
  color: var(--cyan-primary);
}

.back-to-top {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--cyan-400);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 3, 8, 0.92);
  backdrop-filter: blur(14px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1001;
  width: 90vw;
  max-width: 1200px;
  background: var(--bg-secondary);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.lightbox-modal.is-active .lightbox-dialog {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(3, 7, 18, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--cyan-primary);
  color: #030712;
  border-color: var(--cyan-primary);
}

.lightbox-media-wrap {
  width: 100%;
  max-height: 72vh;
  background: #010206;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(3, 7, 18, 0.9);
  border-top: 1px solid var(--border-subtle);
  gap: 1.5rem;
}

.lightbox-caption {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lightbox-nav-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: var(--cyan-primary);
  color: #030712;
  border-color: var(--cyan-primary);
}

.lightbox-counter {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  min-width: 50px;
  text-align: center;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: rgba(14, 26, 47, 0.95);
  border: 1px solid var(--cyan-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(12px);
  animation: toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }

  .hero-metrics {
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }

  .metric-divider {
    display: none;
  }

  .game-showcase-card {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   LEGAL & PRIVACY POLICY PAGE STYLES
   ========================================================================== */
.legal-page-header {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

.legal-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.legal-breadcrumbs a {
  color: var(--cyan-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.legal-breadcrumbs a:hover {
  color: var(--cyan-primary);
  text-decoration: underline;
}

.legal-container {
  max-width: 920px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.legal-card {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

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

.legal-callout {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-left: 4px solid var(--cyan-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.callout-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cyan-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
}

.callout-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.callout-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.legal-section {
  margin-bottom: 2.75rem;
}

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

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-section h2 .section-num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--cyan-primary);
  background: var(--cyan-dim);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0.25rem;
  top: 0;
  color: var(--cyan-primary);
  font-size: 1.1rem;
}

.legal-section ul li strong {
  color: var(--text-primary);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.925rem;
}

.legal-table th,
.legal-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-table th {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.legal-table td {
  color: var(--text-secondary);
  background: rgba(12, 23, 42, 0.4);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.badge-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-none {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-diag {
  background: rgba(56, 189, 248, 0.15);
  color: var(--cyan-400);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.legal-actions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 1.75rem;
  }
  .legal-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

