:root {
  --blue: #0a0f2c;
  --gold: #d4af37;
  --white: #ffffff;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--blue);
  color: var(--white);
}

.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10,15,44,0.85),
    rgba(10,15,44,0.9)
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 300px;
  margin-bottom: 10px;
  animation: glow 3s infinite alternate;
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
}

h2{
  color: var(--gold);
  margin-bottom: 20px;
}

h3{
  color: var(--gold);
  margin-bottom: 10px;
}

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

.tagline {
  margin: 20px 0;
}

.cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.gold {
  background: var(--gold);
  color: #000;
}

.outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn:hover {
  transform: translateY(-3px);
}

.countdown {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.countdown div {
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 10px;
}

.section {
  padding: 80px 20px;
  text-align: center;
}

.section.dark {
  background: #05081a;
}

.section.dark p{
  line-height: 26px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.price-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
}

.price-card ul{
   list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.price-card ul li{
    margin: 5px 0;
}

.vip {
  border: 2px solid var(--gold);
}

footer {
  padding: 30px;
  text-align: center;
  opacity: 0.7;
}

.sound-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 10;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px gold);
  }
  to {
    filter: drop-shadow(0 0 20px gold);
  }
}

.fade-in {
  animation: fade 1.5s ease forwards;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Mobile fallback */
@media (max-width: 768px) {
  .logo {
  width: 600px;
  margin-bottom: 10px;
  animation: glow 3s infinite alternate;
}

  /*
    .video-bg {
      display: none;
    }
    .hero-video {
      background: url('assets/hero-mobile.jpg') center/cover no-repeat;
    }
  */
}
