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

body {
  background: #050505;
  color: #eaeaea;
  font-family: "Times New Roman", serif;
  letter-spacing: 0.05em;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
}

.logo {
  font-style: italic;
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

nav a:hover {
  opacity: 0.6;
}

/* Hero */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
}

.hero p {
  font-style: italic;
  opacity: 0.6;
  margin-top: 10px;
}

/* Sections */
.section {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 20px;
}

.section h2 {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  margin-bottom: 60px;
  font-weight: normal;
}

/* Tracks */
.track {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Track title */
.track h3 {
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
}

/* Modern audio player wrapper */
.audio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hide the default audio controls */
.audio-player audio {
  width: 100%;
  outline: none;
  border-radius: 8px;
  background: #333;
  accent-color: #00ffea; /* Modern highlight color for progress and buttons */
}

/* Optional: Add hover effect for the audio container */
.audio-player:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

/* About & Contact */
.about p,
.contact p {
  text-align: center;
  line-height: 1.8;
}

.contact a {
  color: #aaa;
  text-decoration: none;
}

.contact a:hover {
  color: #fff;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
