/* ==========================================================================
   Project SwiftSouls - Official Landing Page Styling
   Aesthetics: Deep Space Obsidian, Cosmic Cyan, Solar Gold, 16-Bit Glassmorphism
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #07090e;
  --bg-card: rgba(13, 19, 33, 0.78);
  --bg-card-hover: rgba(22, 33, 58, 0.88);
  --bg-card-solid: #0d1321;
  --cyan: #00f0ff;
  --cyan-dim: rgba(0, 240, 255, 0.15);
  --gold: #fbbf24;
  --gold-dim: rgba(251, 191, 36, 0.18);
  --fire: #f43f5e;
  --purple: #a855f7;
  --green: #10b981;
  --blue: #38bdf8;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.35);
  --border-gold: rgba(251, 191, 36, 0.4);

  /* Fonts */
  --font-retro: 'Silkscreen', 'Press Start 2P', monospace;
  --font-pixel: 'Press Start 2P', monospace;
  --font-ui: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-cyan: 0 0 25px rgba(0, 240, 255, 0.25);
  --shadow-gold: 0 0 25px rgba(251, 191, 36, 0.25);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --ease-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Canvas */
#celestial-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Typography Utilities */
.text-gradient-cyan {
  background: linear-gradient(135deg, #00f0ff 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-fire {
  background: linear-gradient(135deg, #fbbf24 0%, #f43f5e 50%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Top Navigation Bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(7, 9, 14, 0.75);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--ease-smooth);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon-wrap {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(244, 63, 94, 0.2));
  border: 1px solid var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.logo-crystal {
  font-size: 1.25rem;
  color: var(--cyan);
  animation: pulse-spin 6s linear infinite;
}

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

.logo-title {
  font-family: var(--font-retro);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.logo-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--ease-smooth);
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--ease-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #0284c7 100%);
  color: #07090e;
  border-color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

.btn-glow {
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: var(--text-main);
  border-color: var(--border-subtle);
}

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

.btn-outline {
  background: transparent;
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.btn-steam {
  background: #171d25;
  border: 1px solid #38bdf8;
  color: #fff;
}

.btn-steam:hover {
  background: #212c3d;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

.btn-telegram {
  background: linear-gradient(135deg, #229ed9 0%, #17739e 100%);
  color: #fff;
}

.btn-telegram:hover {
  box-shadow: 0 0 20px rgba(34, 158, 217, 0.5);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 4rem 1.5rem 5rem;
  position: relative;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-spark {
  animation: pulse-spark 1.5s infinite alternate;
}

.hero-title {
  font-family: var(--font-retro);
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}

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

.stat-number {
  font-family: var(--font-retro);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual Art Frame */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 480px;
  background: radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.6) 0%, rgba(13, 19, 33, 0.8) 70%, transparent 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 240, 255, 0.25);
  animation: spin-slow 40s linear infinite;
}

.hero-planet-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(0, 240, 255, 0.35));
  animation: float-slow 7s ease-in-out infinite alternate;
}

.hero-pod-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hero-character-sprite {
  width: 110px;
  height: 110px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.6));
  animation: float-subtle 4s ease-in-out infinite alternate;
}

.pod-caption {
  margin-top: 0.5rem;
  background: rgba(13, 19, 33, 0.9);
  border: 1px solid var(--border-glow);
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-spark 1s infinite alternate;
}

/* Floating Blades */
.floating-blade {
  position: absolute;
  width: 68px;
  height: 68px;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  transition: var(--ease-smooth);
}

.floating-blade:hover {
  transform: scale(1.15) !important;
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.floating-blade img {
  width: 44px;
  height: 44px;
  image-rendering: pixelated;
}

.blade-1 {
  top: 15%;
  right: 5%;
  border-color: var(--border-gold);
  animation: float-blade-1 5s ease-in-out infinite alternate;
}

.blade-2 {
  bottom: 15%;
  right: 10%;
  border-color: rgba(56, 189, 248, 0.4);
  animation: float-blade-2 6s ease-in-out infinite alternate;
}

.blade-3 {
  bottom: 20%;
  left: 5%;
  border-color: rgba(251, 191, 36, 0.4);
  animation: float-blade-3 5.5s ease-in-out infinite alternate;
}

/* VIP Section */
.vip-section {
  padding: 2rem 1.5rem 5rem;
}

.vip-container {
  max-width: 1000px;
  margin: 0 auto;
}

.vip-card {
  background: linear-gradient(135deg, rgba(20, 28, 48, 0.85) 0%, rgba(13, 19, 33, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.vip-badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid var(--gold);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.vip-title {
  font-family: var(--font-retro);
  font-size: 1.85rem;
  margin-bottom: 1rem;
  color: #fff;
}

.vip-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 740px;
  margin: 0 auto 2rem;
}

.vip-form {
  display: flex;
  max-width: 580px;
  margin: 0 auto 2rem;
  gap: 0.75rem;
}

.input-wrap {
  flex: 1;
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}

.input-wrap input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: var(--ease-smooth);
}

.input-wrap input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.btn-enlist {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #07090e;
  font-weight: 700;
  white-space: nowrap;
}

.btn-enlist:hover {
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.6);
  transform: translateY(-2px);
}

.vip-feedback {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 0 auto 1.5rem;
  max-width: 580px;
  font-size: 0.95rem;
  font-weight: 500;
}

.vip-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--green);
  color: #a7f3d0;
}

.vip-perks-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
  text-align: left;
}

.vip-perk-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.perk-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* Sections Shared Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-retro);
  font-size: 2.15rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Features Grid */
.features-section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2.25rem;
  backdrop-filter: blur(16px);
  transition: var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

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

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
}

.cyan-glow {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.fire-glow {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.purple-glow {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.gold-glow {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.green-glow {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.blue-glow {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.feature-title {
  font-family: var(--font-retro);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.85rem;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.feature-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

/* Melodie's Art Gallery */
.gallery-section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-tab {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease-smooth);
}

.gallery-tab:hover {
  border-color: var(--cyan);
  color: #fff;
}

.gallery-tab.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.art-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.art-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ease-smooth);
}

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

.art-img-box {
  background: radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.7) 0%, rgba(13, 19, 33, 0.9) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-subtle);
}

.art-img-box img {
  width: 80px;
  height: 80px;
  image-rendering: pixelated;
  transition: transform 0.3s ease;
}

.art-card:hover .art-img-box img {
  transform: scale(1.2) rotate(-5deg);
}

.art-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.art-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.65rem;
  align-self: flex-start;
}

.art-tag.fire {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: #fda4af;
}

.art-tag.blue {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #bae6fd;
}

.art-tag.gold {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fde68a;
}

.art-tag.purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #e9d5ff;
}

.art-title {
  font-family: var(--font-retro);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.art-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.art-stats {
  display: flex;
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
}

/* Protagonist Spotlight */
.hero-spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.hero-spotlight-visual {
  background: radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.8) 0%, rgba(13, 19, 33, 0.95) 80%);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-big-sprite {
  width: 140px;
  height: 140px;
  image-rendering: pixelated;
  animation: float-subtle 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}

.hero-spotlight-info h3 {
  font-family: var(--font-retro);
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-spotlight-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-art-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-art-rules li {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.hero-art-rules li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.9rem;
}

/* Monster Bestiary Previews */
.bestiary-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.monster-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: var(--ease-smooth);
}

.monster-preview-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-cyan);
}

.monster-canvas-box {
  width: 90px;
  height: 90px;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
}

.monster-preview-card h4 {
  font-family: var(--font-retro);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.element-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.element-badge.poison {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.element-badge.fire {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: #fda4af;
}

.element-badge.cold {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #bae6fd;
}

.element-badge.earth {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fde68a;
}

.monster-preview-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Audio Player Section */
.audio-section {
  padding: 5rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.audio-player-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(13, 19, 33, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-cyan), var(--shadow-card);
}

.player-top-bar {
  background: rgba(7, 9, 14, 0.7);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.now-playing-label {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.sound-chip-badge {
  font-family: var(--font-retro);
  font-size: 0.75rem;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.player-main {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.visualizer-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 60px;
  width: 240px;
  margin-bottom: 1.75rem;
}

.vis-bar {
  width: 10px;
  height: 8px;
  background: linear-gradient(to top, #00f0ff, #a855f7);
  border-radius: 3px;
  transition: height 0.08s ease;
}

.vis-bar.playing {
  animation: bar-bounce 0.8s ease-in-out infinite alternate;
}

.vis-bar:nth-child(2) { animation-delay: 0.1s; }
.vis-bar:nth-child(3) { animation-delay: 0.2s; }
.vis-bar:nth-child(4) { animation-delay: 0.3s; }
.vis-bar:nth-child(5) { animation-delay: 0.15s; }
.vis-bar:nth-child(6) { animation-delay: 0.25s; }
.vis-bar:nth-child(7) { animation-delay: 0.35s; }
.vis-bar:nth-child(8) { animation-delay: 0.05s; }
.vis-bar:nth-child(9) { animation-delay: 0.18s; }
.vis-bar:nth-child(10) { animation-delay: 0.28s; }
.vis-bar:nth-child(11) { animation-delay: 0.12s; }
.vis-bar:nth-child(12) { animation-delay: 0.22s; }

.track-info {
  margin-bottom: 2rem;
}

.track-title {
  font-family: var(--font-retro);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.track-artist {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}

.btn-play-pause {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f0ff 0%, #0284c7 100%);
  border: none;
  color: #07090e;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease-smooth);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn-play-pause:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.track-selector {
  display: flex;
  background: rgba(7, 9, 14, 0.7);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  gap: 4px;
}

.track-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--ease-smooth);
}

.track-btn:hover {
  color: #fff;
}

.track-btn.active {
  background: rgba(0, 240, 255, 0.2);
  color: var(--cyan);
}

.volume-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vol-icon {
  font-size: 1rem;
  color: var(--text-muted);
}

#volume-slider {
  width: 80px;
  accent-color: var(--cyan);
  cursor: pointer;
}

.player-footer {
  background: rgba(7, 9, 14, 0.5);
  border-top: 1px solid var(--border-subtle);
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Development Roadmap Section */
.roadmap-section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.challenge-card {
  background: linear-gradient(135deg, rgba(20, 28, 48, 0.8) 0%, rgba(13, 19, 33, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-gold);
}

.challenge-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.challenge-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.challenge-text h3 {
  font-family: var(--font-retro);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.challenge-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.progress-bar-wrap {
  width: 100%;
  height: 16px;
  background: rgba(7, 9, 14, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #f43f5e);
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  transition: width 0.5s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.progress-pct {
  color: var(--gold);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card-solid);
  border: 2px solid var(--border-subtle);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.timeline-step.completed .step-marker {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.timeline-step.current .step-marker {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
  animation: pulse-spark 1.5s infinite alternate;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  flex: 1;
}

.timeline-step.current .step-card {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.step-phase {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  display: block;
}

.step-card h4 {
  font-family: var(--font-retro);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Community Channels */
.community-section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: var(--ease-smooth);
}

.community-card:hover {
  transform: translateY(-4px);
}

.steam-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}

.telegram-card:hover {
  border-color: #229ed9;
  box-shadow: 0 0 25px rgba(34, 158, 217, 0.3);
}

.tiktok-card:hover {
  border-color: #f43f5e;
  box-shadow: 0 0 25px rgba(244, 63, 94, 0.3);
}

.itch-card:hover {
  border-color: #fa5c5c;
  box-shadow: 0 0 25px rgba(250, 92, 92, 0.3);
}

.comm-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.comm-info h3 {
  font-family: var(--font-retro);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.comm-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.comm-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
}

/* Press Section */
.press-section {
  padding: 2rem 1.5rem 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.press-card {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  backdrop-filter: blur(12px);
}

.press-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.press-content h3 {
  font-family: var(--font-retro);
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.press-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 580px;
}

.press-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  white-space: nowrap;
}

/* Site Footer */
.site-footer {
  background: rgba(5, 7, 10, 0.95);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-title {
  font-family: var(--font-retro);
  font-size: 1.25rem;
  color: #fff;
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 360px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.col-title {
  font-family: var(--font-retro);
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Modal Dialog */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-cyan);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-retro);
  font-size: 1.2rem;
  color: #fff;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float-slow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes float-subtle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes float-blade-1 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(5deg); }
}

@keyframes float-blade-2 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(12px) rotate(-6deg); }
}

@keyframes float-blade-3 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(8deg); }
}

@keyframes pulse-spark {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}

@keyframes pulse-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes bar-bounce {
  0% { height: 8px; }
  100% { height: 50px; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtext {
    margin: 0 auto 2.25rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .challenge-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 9, 14, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: 1.25rem;
  }

  .main-nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .vip-form {
    flex-direction: column;
  }

  .hero-spotlight-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

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

  .footer-links-group {
    grid-template-columns: 1fr;
  }
}
