:root {
  --bg: #07030d;
  --panel-bg: #11091f;
  --neon-pink: #ff007f;
  --neon-cyan: #00f0ff;
  --text-primary: #f2edf8;
  --text-muted: #8b7d9f;
  --border-color: #2b1d42;
  --glow-pink: 0 0 12px rgba(255, 0, 127, 0.5);
  --glow-cyan: 0 0 12px rgba(0, 240, 255, 0.5);
}

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

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.glow-bg {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 44, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 3, 13, 0.85);
}

.brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-shadow: var(--glow-cyan);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-neon {
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: inset var(--glow-cyan), var(--glow-cyan);
}

.btn-neon:hover {
  background: var(--neon-cyan);
  color: var(--bg);
  box-shadow: 0 0 20px var(--neon-cyan);
}

/* Hero */
.hero {
  min-height: calc(80vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--neon-pink);
  border: 1px solid var(--neon-pink);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 0, 127, 0.05);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.1;
  text-shadow: var(--glow-pink);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
}

/* Grid Layout */
.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Cyber Card */
.cyber-card {
  background: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.card-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

.card-body {
  padding: 24px;
}

/* Player Card */
.player-card {
  width: 100%;
}

.player-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.eq-container {
  background: #090412;
  border: 1px solid var(--border-color);
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

#eq-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.player-controls {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}

.track-meta {
  font-family: 'Orbitron', sans-serif;
}

#current-track-name {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

#current-track-genre {
  font-family: 'Share Tech Mono', monospace;
  color: var(--neon-pink);
  font-size: 0.85rem;
}

.progress-bar-container {
  background: #1c0f2e;
  height: 6px;
  border-radius: 100px;
  overflow: hidden;
  margin: 20px 0;
  position: relative;
}

.progress-bar {
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  width: 35%;
  height: 100%;
  transition: width 0.1s linear;
}

.buttons-row {
  display: flex;
  gap: 12px;
}

.player-btn {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: 'Share Tech Mono', monospace;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: bold;
}

.player-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.player-btn.btn-highlight {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: var(--glow-pink);
}

.player-btn.btn-highlight:hover {
  background: var(--neon-pink);
  color: #fff;
}

/* Specifications */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Share Tech Mono', monospace;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 6px;
}

.spec-list li span:first-child {
  color: var(--text-muted);
}

.spec-list li span:last-child {
  color: var(--neon-cyan);
}

.info-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Releases */
.track-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.track-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Share Tech Mono', monospace;
}

.track-row:hover {
  background: rgba(255, 255, 255, 0.01);
  border-color: var(--border-color);
  color: var(--neon-cyan);
}

.track-row.active-row {
  background: rgba(0, 240, 255, 0.02);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.track-num {
  color: var(--neon-pink);
}

.track-title {
  flex-grow: 1;
  margin-left: 20px;
}

.track-duration {
  color: var(--text-muted);
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 40px;
  font-family: 'Share Tech Mono', monospace;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  margin-top: 80px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .player-body {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}
