/* ============================================
   VIRIS AND THE COVIDIOTS
   Global Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */

header {
  text-align: center;
  padding: 80px 20px 40px;
  background: #000;
  position: relative;
}

header .biohazard-symbol {
  font-size: 80px;
  color: #c8ff00;
  display: block;
  margin-bottom: 20px;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

header h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  font-weight: normal;
}

header .tagline {
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #666;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  background: #000;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  border: 1px solid #c8ff00;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
}

nav a {
  color: #c8ff00;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

/* ============================================
   ALBUM 1 — VIRAL SPIRAL (BIOHAZARD)
   ============================================ */

#album1 {
  background: #000;
  padding: 80px 20px;
  border-bottom: 2px solid #c8ff00;
  position: relative;
}

#album1::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(200,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.album-container {
  max-width: 900px;
  margin: 0 auto;
}

.album-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

@media (max-width: 640px) {
  .album-header {
    grid-template-columns: 1fr;
  }
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #c8ff00;
  display: block;
}

.album-cover-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #c8ff00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8ff00;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.album-info {
  padding-top: 10px;
}

.album-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #c8ff00;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.album-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.album-status {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.album-status span {
  color: #c8ff00;
}

/* ============================================
   TRACKLIST
   ============================================ */

.tracklist {
  list-style: none;
  border-top: 1px solid #1a1a1a;
}

.tracklist li {
  border-bottom: 1px solid #1a1a1a;
  padding: 20px 0;
}

.track-row {
  display: grid;
  grid-template-columns: 30px 1fr 200px;
  gap: 20px;
  align-items: center;
}

.track-number {
  font-size: 0.65rem;
  color: #444;
  letter-spacing: 0.1em;
}

.track-title {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.track-title .track-subtitle {
  display: block;
  font-size: 0.65rem;
  color: #555;
  letter-spacing: 0.1em;
  margin-top: 4px;
  text-transform: none;
}

/* Custom audio player */
.player {
  display: flex;
  align-items: center;
  gap: 12px;
}

.play-btn {
  background: transparent;
  border: 1px solid #c8ff00;
  color: #c8ff00;
  width: 32px;
  height: 32px;
  border-radius: 0;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.play-btn:hover {
  background: #c8ff00;
  color: #000;
}

.play-btn.playing {
  background: #c8ff00;
  color: #000;
}

.progress-wrap {
  width: 140px;
  height: 2px;
  background: #1a1a1a;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.progress-bar {
  height: 100%;
  background: #c8ff00;
  width: 0%;
  pointer-events: none;
}

.time-display {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: #c8ff00;
  min-width: 32px;
  text-align: right;
}

/* Album 2 player overrides */
#album2 .play-btn {
  border-color: #ff3cac;
  color: #ff3cac;
}

#album2 .play-btn:hover,
#album2 .play-btn.playing {
  background: #ff3cac;
  color: #fff;
}

#album2 .progress-wrap {
  background: #ddd;
}

#album2 .progress-bar {
  background: #ff3cac;
}

#album2 .time-display {
  color: #bbb;
}

.track-coming-soon {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #333;
  text-transform: uppercase;
}

/* ============================================
   ALBUM 2 — POLYESTER, MEIN BESTER (PLASTIC)
   ============================================ */

#album2 {
  background: #f0f0f0;
  padding: 80px 20px;
  color: #111;
  position: relative;
  overflow: hidden;
}

#album2::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ff3cac 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

#album2::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

#album2 .album-label {
  color: #ff3cac;
}

#album2 .album-title {
  color: #111;
  background: linear-gradient(90deg, #ff3cac, #ffae00, #00d4ff, #3cff8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#album2 .album-status {
  color: #999;
}

#album2 .album-status span {
  color: #ff3cac;
}

#album2 .album-cover-placeholder {
  border: 2px solid #ff3cac;
  color: #ff3cac;
  background: linear-gradient(135deg, #fff 0%, #ffe0f5 50%, #e0f9ff 100%);
}

#album2 .tracklist {
  border-top: 1px solid #ddd;
}

#album2 .tracklist li {
  border-bottom: 1px solid #ddd;
}

#album2 .track-number {
  color: #bbb;
}

#album2 .track-title {
  color: #111;
}

#album2 .track-title .track-subtitle {
  color: #aaa;
}

#album2 .track-coming-soon {
  color: #ccc;
}

#album2 audio {
  filter: none;
}

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

footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 40px 20px;
  text-align: center;
}

footer p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #333;
  text-transform: uppercase;
  line-height: 2;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  color: #c8ff00;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.social-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #c8ff00;
}
