@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&family=Outfit:wght@300;400;600;700;800;900&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --bg-main: #06070a;
  --bg-card: rgba(14, 17, 24, 0.75);
  --bg-card-hover: rgba(22, 27, 38, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 242, 254, 0.35);
  --neon-cyan: #00f2fe;
  --neon-blue: #4facfe;
  --neon-pink: #ff0055;
  --neon-purple: #7928ca;
  --neon-amber: #ffaa00;
  --text-main: #f3f4f6;
  --text-muted: #94a3b8;
  --sony-white: #ffffff;
  --carbon-pattern: radial-gradient(#121620 15%, transparent 16%) 0 0,
                    radial-gradient(#121620 15%, transparent 16%) 8px 8px,
                    radial-gradient(rgba(255,255,255,.05) 15%, transparent 20%) 0 1px,
                    radial-gradient(rgba(255,255,255,.05) 15%, transparent 20%) 8px 9px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  background-image: var(--carbon-pattern);
  background-size: 16px 16px;
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Sony Music Brand Bar */
.sony-top-bar {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1000;
  position: relative;
}

.sony-logo-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.sony-logo-lockup svg {
  height: 14px;
  fill: #ff0000;
}

.sony-top-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s;
}

.sony-top-links a:hover {
  color: #fff;
}

/* Main Navigation */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(6, 7, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.brand-logo .dani-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

.brand-logo .tag {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.nav-cta {
  background: linear-gradient(135deg, #ff0055, #ff5e3a);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.6);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 48px;
  background: linear-gradient(to right, rgba(6, 7, 10, 0.95) 30%, rgba(6, 7, 10, 0.4) 100%),
              url('assets/hero.jpg') center center/cover no-repeat;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 40%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .accent-text {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon-cyan), #00a8ff);
  color: #06070a;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.7);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

/* Cockpit Player Station */
.cockpit-section {
  padding: 80px 48px;
  background: radial-gradient(circle at 50% 30%, rgba(20, 28, 45, 0.6) 0%, rgba(6, 7, 10, 1) 80%);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--neon-pink);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}

.cockpit-chassis {
  max-width: 1160px;
  margin: 0 auto;
  background: linear-gradient(160deg, #11141d 0%, #090b10 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 242, 254, 0.15);
  overflow: hidden;
  position: relative;
}

.cockpit-top-hud {
  background: #0d1017;
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.hud-status-light {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow: 0 0 10px #00f2fe;
  margin-right: 6px;
  animation: pulseLight 1.8s infinite;
}

@keyframes pulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.cockpit-grid {
  display: grid;
  grid-template-columns: 320px 1fr 340px;
  gap: 24px;
  padding: 32px;
}

/* Left Column: Track Artwork & Meta */
.player-art-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.art-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 242, 254, 0.25);
  margin-bottom: 18px;
}

.art-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.art-overlay-sony {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.player-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.player-album {
  color: var(--neon-cyan);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.player-meta-tags {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.meta-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-family: 'Space Grotesk', monospace;
  color: var(--text-muted);
}

/* Center Column: Visualizer, RPM & Controls */
.player-telemetry-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visualizer-container {
  height: 120px;
  background: #090c12;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.visualizer-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hud-meters-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.hud-card {
  background: #0d1017;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-card-label {
  font-size: 0.72rem;
  font-family: 'Orbitron', monospace;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.hud-card-val {
  font-size: 1.6rem;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  color: #fff;
}

.hud-card-val span {
  font-size: 0.8rem;
  color: var(--neon-cyan);
}

/* Center Control Deck */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.ctrl-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: scale(1.08);
}

.ctrl-btn-play {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--neon-cyan), #0099ff);
  color: #000;
  font-size: 1.4rem;
  border: none;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
}

.ctrl-btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.8);
  color: #000;
}

/* Interactive Action Buttons (Bass Boost & Engine Rev) */
.car-actions-row {
  display: flex;
  gap: 12px;
}

.action-switch {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.action-switch:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-cyan);
}

.action-switch.active {
  background: rgba(255, 0, 85, 0.2);
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

.action-switch.rev-btn:active {
  transform: scale(0.96);
  background: rgba(255, 170, 0, 0.3);
  border-color: var(--neon-amber);
  color: var(--neon-amber);
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.6);
}

/* Right Column: Playlist & Gauge */
.player-playlist-panel {
  display: flex;
  flex-direction: column;
}

.playlist-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

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

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.track-row:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.track-row.active {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--neon-cyan);
}

.track-row.active .track-name {
  color: var(--neon-cyan);
}

.track-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.track-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.track-bpm-badge {
  font-size: 0.72rem;
  font-family: 'Space Grotesk', monospace;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-muted);
}

/* Analog RPM Gauge HUD */
.rpm-gauge-widget {
  margin-top: 20px;
  background: #090c12;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.gauge-dial {
  width: 120px;
  height: 60px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.gauge-dial-bg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--neon-cyan);
  border-right-color: var(--neon-pink);
  position: absolute;
  top: 0;
  left: 0;
}

.gauge-needle {
  width: 4px;
  height: 50px;
  background: #ff0055;
  position: absolute;
  bottom: 0;
  left: 58px;
  transform-origin: bottom center;
  transform: rotate(-90deg);
  transition: transform 0.08s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px #ff0055;
  border-radius: 2px;
}

/* Discography Section */
.discography-section {
  padding: 90px 48px;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.release-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.release-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px rgba(0, 242, 254, 0.2);
}

.release-cover-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.release-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.release-card:hover .release-cover-frame img {
  transform: scale(1.05);
}

.release-overlay-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.release-body {
  padding: 24px;
}

.release-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--neon-pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.release-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.release-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.streaming-links-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stream-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.stream-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* Sony Press & Bio Section */
.bio-section {
  padding: 90px 48px;
  background: #090c12;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bio-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.bio-card-visual {
  position: relative;
}

.bio-quote-box {
  background: linear-gradient(135deg, rgba(20, 24, 36, 0.9), rgba(10, 12, 18, 0.95));
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.bio-quote-box p {
  font-size: 1.15rem;
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.bio-quote-author {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  color: var(--neon-cyan);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.bio-text h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.bio-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.sony-label-stamp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 8px;
  margin-top: 12px;
}

/* Tour Section */
.tour-section {
  padding: 90px 48px;
}

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

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.tour-card:hover {
  border-color: var(--neon-pink);
  transform: translateX(6px);
  background: var(--bg-card-hover);
}

.tour-date-col {
  display: flex;
  flex-direction: column;
}

.tour-day {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--neon-cyan);
}

.tour-month {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tour-loc-col h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.tour-loc-col p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tour-badge {
  background: rgba(255, 0, 85, 0.15);
  color: var(--neon-pink);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Newsletter & VIP Club */
.vip-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, #090c12 0%, #06070a 100%);
  text-align: center;
}

.vip-box {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(20, 25, 38, 0.7), rgba(10, 12, 18, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 48px 36px;
}

.vip-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.vip-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 14px 20px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.vip-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

/* Sony Music Global Footer */
.sony-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 48px 30px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.footer-col h5 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
  .cockpit-grid {
    grid-template-columns: 1fr;
  }
  .bio-container {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .main-nav {
    padding: 14px 20px;
  }
  .nav-menu {
    display: none;
  }
  .hero-section {
    padding: 40px 20px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hud-meters-row {
    grid-template-columns: 1fr;
  }
  .vip-form {
    flex-direction: column;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
