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

body {
  font-family: monospace;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  background: black;
}

/* Background image */
.background {
  position: fixed;
  inset: 0;
  background: url("IMG_4414.jpeg") center/cover no-repeat;
  z-index: -2;
  transform: scale(1.05);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  z-index: -1;
}

/* Music Bar */
.music-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 1000;
}

.music-info {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.music-bar button {
  background: white;
  color: black;
  border: none;
  padding: 6px 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.music-bar button:hover {
  background: #aaa;
}

/* Hero */
.hero {
  text-align: center;
  padding-top: 180px;
  animation: fadeIn 1.5s ease forwards;
}

.logo {
  font-size: 4rem;
  letter-spacing: 8px;
  text-transform: lowercase;
}

.subtitle {
  margin-top: 10px;
  opacity: 0.6;
}

/* Buttons */
.buttons {
  margin-top: 40px;
}

.buttons a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 8px 22px;
  transition: 0.3s;
}

.buttons a:hover {
  background: white;
  color: black;
}

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

.section h2 {
  margin-bottom: 20px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.04);
  background: rgba(255,255,255,0.1);
}

p + p {
  margin-top: 20px;
}

/* Fade animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}