*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Orbitron', sans-serif;

  background:
  url('assets/img/bg.png')
  center center/cover no-repeat;

  color:white;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.82);
  z-index:-2;
}

.grid{
  position:fixed;
  inset:0;

  background:
  linear-gradient(rgba(0,255,255,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,255,255,0.03) 1px, transparent 1px);

  background-size:40px 40px;
  z-index:-1;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:25px;
}

.hero-box{
  width:100%;
  max-width:1000px;

  text-align:center;

  padding:55px 30px;

  border-radius:30px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(8px);

  box-shadow:
  0 0 30px rgba(0,255,255,0.12),
  0 0 70px rgba(255,0,255,0.08);

  transition:.3s ease;
}

.logo-box{
  width:120px;
  height:120px;

  margin:auto auto 25px;

  border-radius:24px;
  overflow:hidden;

  border:
  2px solid rgba(0,255,255,0.35);

  box-shadow:
  0 0 20px rgba(0,255,255,0.25);
}

.logo-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

h1{
  font-size:clamp(2.5rem,6vw,5rem);

  margin-bottom:18px;

  letter-spacing:5px;

  background:
  linear-gradient(
    90deg,
    #00f0ff,
    #ff00ff
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.clock{
  margin-bottom:12px;
  color:#d7e4ff;
}

.reserved{
  margin-bottom:40px;
  color:#b4bfd3;
  letter-spacing:3px;
}

/* BUTTON */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
}

.btn{
  position:relative;
  overflow:hidden;

  padding:18px 65px;

  border-radius:20px;

  text-decoration:none;
  color:white;

  font-size:1.1rem;
  font-weight:700;
  letter-spacing:3px;

  background:
  rgba(255,255,255,0.06);

  border:
  1px solid rgba(255,255,255,0.12);

  transition:.35s ease;

  box-shadow:
  0 0 15px rgba(0,255,255,0.15);
}

.btn:hover{
  transform:
  translateY(-6px)
  scale(1.05);
}

.cyan{
  border-color:#00e1ff;
}

.pink{
  border-color:#ff00ff;
}

/* SECTION */

.section{
  width:92%;
  max-width:1300px;
  margin:90px auto;
}

.section-title{
  text-align:center;
  margin-bottom:45px;

  color:#00f0ff;

  font-size:2.2rem;
}

/* CARD */

.card{
  background:
  rgba(255,255,255,0.05);

  border-radius:28px;

  overflow:hidden;

  border:
  1px solid rgba(0,255,255,0.12);

  backdrop-filter:blur(6px);

  transition:.35s ease;

  box-shadow:
  0 0 20px rgba(0,255,255,0.08);
}

.card:hover{
  transform:translateY(-6px);

  box-shadow:
  0 0 30px rgba(0,255,255,0.25),
  0 0 60px rgba(255,0,255,0.12);
}

.leader-card{
  max-width:850px;
  margin:auto auto 40px;
}

.card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

.card-info{
  padding:28px;
}

.card-info h3{
  margin-bottom:20px;
  color:#00f0ff;
}

.card-info p{
  margin-bottom:10px;
  color:#d7e4ff;
}

.co-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:25px;
}

/* MEMBERS */

.members-slider{
  display:flex;

  align-items:center;

  gap:20px;

  overflow-x:auto;

  scroll-snap-type:x mandatory;

  scroll-behavior:smooth;

  padding:20px 20vw;

  scrollbar-width:none;

  -webkit-overflow-scrolling:touch;
}

.members-slider::-webkit-scrollbar{
  display:none;
}

.member-item{
  min-width:760px;
  max-width:760px;

  scroll-snap-align:center;

  flex-shrink:0;

  overflow:hidden;

  border-radius:28px;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(0,255,255,0.12);

  backdrop-filter:blur(6px);

  transition:
  transform .25s ease,
  opacity .25s ease,
  filter .25s ease;

  opacity:.35;

  transform:scale(.88);

  filter:blur(2px);
}

.member-item.active{
  opacity:1;
  transform:scale(1);
  filter:blur(0);

  box-shadow:
  0 0 35px rgba(0,255,255,0.35),
  0 0 80px rgba(255,0,255,0.15);
}

.member-item img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

.member-item .info{
  padding:28px;
}

.member-item .info h3{
  margin-bottom:18px;
  color:#00f0ff;
}

.member-item .info p{
  margin-bottom:10px;
  color:#d7e4ff;
}

/* INFO BOX */

.info-box{
  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(0,255,255,0.12);

  padding:35px;

  border-radius:28px;
}

.info-box h2{
  margin-bottom:22px;
  color:#00f0ff;
}

.info-box li{
  margin-bottom:12px;
}

.nickname{
  font-size:1.6rem;
  color:#ff00ff;
}

/* FOOTER */

footer{
  text-align:center;
  padding:70px 20px;
}

.tiktok-link{
  display:inline-flex;
  align-items:center;
  gap:12px;

  color:white;

  text-decoration:none;

  margin-top:15px;
}

/* MOBILE */

@media(max-width:768px){

  .hero-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .members-slider{
    padding:10px 8vw;
    gap:14px;
  }

  .member-item{
    min-width:84vw;
    max-width:84vw;
  }

  .card-info,
  .member-item .info{
    padding:22px;
  }

}