:root{
  --main-color:#ffcc00;
  --main-glow:rgba(255,102,0,0.35);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#050505;
  color:white;
  overflow-x:hidden;
}

/* Loader */

#loader{
  position:fixed;
  width:100%;
  height:100vh;
  background:black;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.loader-content h1{
  color:var(--main-color);
  font-size:4rem;
  text-shadow:0 0 20px var(--main-color);
}

.loader-content p{
  text-align:center;
  margin-top:15px;
  color:#bbb;
}

/* Particles */

.particles::before{
  content:'';
  position:fixed;
  width:100%;
  height:100%;
  background:
  radial-gradient(circle,var(--main-glow) 1px,transparent 1px);
  background-size:40px 40px;
  animation:moveParticles 20s linear infinite;
  z-index:-1;
}

@keyframes moveParticles{

  from{
    transform:translateY(0);
  }

  to{
    transform:translateY(-100px);
  }

}

/* Navbar */

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  position:sticky;
  top:0;
  backdrop-filter:blur(10px);
  background:rgba(0,0,0,0.5);
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo img{
  width:60px;
  height:60px;
  border-radius:50%;
  border:2px solid var(--main-color);
  box-shadow:0 0 15px var(--main-color);
}

.logo h2{
  color:var(--main-color);
  text-shadow:0 0 10px var(--main-color);
}

.nav-links a{
  text-decoration:none;
  color:white;
  margin-left:20px;
  transition:0.3s;
}

.nav-links a:hover{
  color:var(--main-color);
}

/* Hero */

.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px;
}

.hero h1{
  font-size:3rem;
  color:#ccc;
}

.hero h2{
  font-size:6rem;
  color:var(--main-color);
  text-shadow:0 0 30px var(--main-color);
}

.hero p{
  margin-top:20px;
  color:#bbb;
  font-size:1.2rem;
}

/* Buttons */

.hero-buttons{
  margin-top:30px;
}

.btn{
  text-decoration:none;
  background:var(--main-color);
  color:white;
  padding:14px 35px;
  border-radius:40px;
  margin:10px;
  display:inline-block;
  transition:0.3s;
  box-shadow:0 0 15px var(--main-color);
}

.btn:hover{
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 0 25px var(--main-color);
}

.secondary{
  background:#111;
}

/* Search */

.search-section{
  padding:20px;
  text-align:center;
}

#searchInput{
  width:300px;
  max-width:90%;
  padding:14px 20px;
  border:none;
  border-radius:40px;
  outline:none;
  background:#111;
  color:white;
  border:1px solid rgba(255,255,255,0.1);
}

#searchInput:focus{
  border:1px solid var(--main-color);
  box-shadow:0 0 15px var(--main-color);
}

/* Live Banner */

.live-banner{
  text-align:center;
  padding:15px;
  background:var(--main-color);
  font-weight:600;
  box-shadow:0 0 20px var(--main-color);
}

/* Members */

.members{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  font-size:3rem;
  margin-bottom:60px;
  color:var(--main-color);
  text-shadow:0 0 15px var(--main-color);
}

.member-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  overflow:hidden;
  text-align:center;
  transition:0.4s;
  position:relative;
  backdrop-filter:blur(10px);
}

.card::before{
  content:'';
  position:absolute;
  width:100%;
  height:4px;
  background:var(--main-color);
  top:0;
  left:0;
  box-shadow:0 0 15px var(--main-color);
}

.card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 0 25px var(--main-color);
}

.card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.card-content{
  padding:20px;
}

.card h3{
  margin-bottom:10px;
  font-size:1.5rem;
}

.role{
  color:var(--main-color);
  margin-bottom:10px;
}

.live{
  color:#00ff66;
  font-weight:600;
  text-shadow:0 0 10px #00ff66;
}

.socials{
  margin-top:20px;
}

.socials a{
  text-decoration:none;
  color:white;
  margin:0 10px;
  background:#111;
  padding:10px 18px;
  border-radius:30px;
  display:inline-block;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.08);
}

.socials a:hover{
  background:var(--main-color);
  box-shadow:0 0 15px var(--main-color);
  transform:translateY(-3px);
}

/* Music Button */

#musicBtn{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  border:none;
  border-radius:50%;
  background:var(--main-color);
  color:white;
  font-size:1.3rem;
  cursor:pointer;
  box-shadow:0 0 20px var(--main-color);
  transition:0.3s;
}

#musicBtn:hover{
  transform:scale(1.1);
}

/* Footer */

footer{
  text-align:center;
  padding:50px 20px;
  background:#080808;
  border-top:1px solid rgba(255,255,255,0.08);
}

footer h2{
  color:var(--main-color);
  text-shadow:0 0 10px var(--main-color);
}

.footer-links{
  margin-top:20px;
}

.footer-links a{
  color:white;
  text-decoration:none;
  margin:0 15px;
  transition:0.3s;
}

.footer-links a:hover{
  color:var(--main-color);
}

@media(max-width:768px){

  .hero h2{
    font-size:3.5rem;
  }

  .hero h1{
    font-size:2rem;
  }

  .nav-links{
    display:none;
  }

  .section-title{
    font-size:2.3rem;
  }

}