:root {
  --bg: #0a0a0a;
  --accent: #00ff41;
  --text: #e0e0e0;
  --border: #333;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  overflow-x: hidden;
}

.scanline {
  position: fixed;
  top: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 255, 65, 0.1);
  z-index: 10;
  animation: scan 8s linear infinite;
}

@keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

header {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
nav a:hover {
  color: var(--accent);
}

.hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('showcase.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 5rem;
  margin: 0;
  letter-spacing: -5px;
  color: var(--text);
  position: relative;
}

.hero h1::before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 2px 0 red;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch 3s infinite linear alternate-reverse;
}

.music-grid {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.track-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.track-card:hover {
  border-color: var(--accent);
  background: rgba(0, 255, 65, 0.05);
}

.player-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000;
  border-top: 2px solid var(--accent);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-container {
  width: 300px;
  height: 4px;
  background: #222;
  margin-top: 10px;
}

.progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
}

@keyframes glitch {
  0% {
    clip: rect(10px, 999px, 40px, 0);
  }
  100% {
    clip: rect(80px, 999px, 100px, 0);
  }
}
