/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.stripe-btn {
  background: linear-gradient(to right, #ff5f6d, #ffc371);
  padding: 10px 20px;
  color: #000;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.stripe-btn:hover {
  transform: scale(1.05);
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-content {
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
#cta-watch {
  padding: 10px 24px;
  font-size: 1rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#cta-watch:hover {
  background: #ddd;
}

/* Audio Toggle */
.audio-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
#audio-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* Content Sections */
.content-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.content-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.content-section p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* DJ Avatar */
.dj-avatar-container {
  text-align: center;
  margin-bottom: 2rem;
}
#dj-avatar {
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
#voice-sample {
  margin-top: 1rem;
  width: 100%;
  max-width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Gated Content Grid */
.gated-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.gated-item {
  background: #111;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #333;
}
.gated-item img {
  max-width: 100%;
  border-radius: 10px;
}
.lock-status {
  color: #ff5f6d;
  font-weight: bold;
  margin: 0.5rem 0;
}

/* Email Form */
#email-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#email-form input[type="email"] {
  padding: 10px;
  width: 300px;
  max-width: 100%;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: none;
}
#email-form button {
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
#email-form button:hover {
  background: #ddd;
}

/* Footer */
footer {
  padding: 2rem;
  background: #111;
  text-align: center;
  position: relative;
}
#audio-visualizer {
  width: 100%;
  height: 100px;
  background: #000;
  display: block;
  margin-bottom: 1rem;
}
.contact-info {
  color: #ccc;
  font-size: 0.9rem;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
}

/* Modal */
#video-player-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#video-player-modal.hidden {
  display: none;
}
.video-container {
  position: relative;
  width: 90%;
  max-width: 800px;
}
#close-modal {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

