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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #040404;
  color: white;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.3s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 1.2rem;
  opacity: 0.85;
}

.button {
  background: white;
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button:hover {
  background: #eee;
}

/* Featured Beat Player */
.player {
  background: #1b1b1b;
  padding: 1.5rem; /* Reduced padding */
  text-align: center;
  border-radius: 8px;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 400px; /* Smaller player */
  margin: auto; /* Center player */
}

#playPauseButton {
  padding: 12px 24px; /* Larger button */
  background-color: #000; /* Black background */
  color: white; /* White text */
  font-size: 18px; /* Larger font */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#playPauseButton:hover {
  background-color: #333; /* Darken on hover */
}

#waveform {
  width: 100%;
  max-width: 600px; /* Adjust width */
  height: 80px; /* Smaller waveform */
  margin: 20px auto; /* Center and space out the waveform */
}

/* Grid Section - Remove this part */
.grid {
  display: none; /* Hide the grid section */
}

/* About */
.about {
  text-align: center;
}

/* Fade In Animation */
.animated-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
