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

body{
  font-family:'Poppins',sans-serif;
  background:#0a0a0a;
  color:#fff;
}

/* NAV */
nav{
  display:flex;
  justify-content:space-between;
  padding:20px 10%;
}

nav h1{
  color:#FFD700;
}

/* HERO */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 10%;
}

.hero-content{
  max-width:500px;
}

.hero h2{
  font-size:3rem;
  color:#FFD700;
}

.hero-image img{
  width:350px;
  border-radius:20px;
  box-shadow:0 0 30px rgba(255,215,0,0.3);
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:#FFD700;
  color:#000;
  border-radius:30px;
  text-decoration:none;
  border:none;
  cursor:pointer;
}

.glow{
  box-shadow:0 0 20px rgba(255,215,0,0.5);
}

/* SECTION */
.section{
  padding:80px 10%;
  text-align:center;
}

.dark{
  background:#111;
}

/* PLAYER */
.player{
  margin-top:20px;
}

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

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin-top:30px;
}

.card{
  background:#111;
  padding:20px;
  border-radius:10px;
  transition:0.3s;
}

.card:hover{
  background:#1a1a1a;
  transform:translateY(-5px);
}

/* FORM */
form{
  margin-top:20px;
}

input{
  padding:12px;
  border-radius:20px;
  border:none;
  width:250px;
  margin-right:10px;
}

/* FOOTER */
footer{
  text-align:center;
  padding:20px;
  opacity:0.5;
}

/* MOBILE */
@media(max-width:768px){
  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-image img{
    width:250px;
    margin-top:20px;
  }
}

/* COUNTDOWN */
.countdown-section{
  text-align:center;
}

.countdown{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:20px;
  flex-wrap:wrap;
}

.countdown div{
  background:#111;
  padding:15px 20px;
  border-radius:10px;
  min-width:70px;
  box-shadow:0 0 15px rgba(255,215,0,0.2);
}

.countdown span{
  font-size:1.8rem;
  color:#FFD700;
  font-weight:bold;
}

.countdown p{
  font-size:0.8rem;
  opacity:0.7;
}