/* ========================= */
/* RESET */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  color:#fff;
  overflow-x:hidden;

  background:
  linear-gradient(
    180deg,
    rgba(4,4,12,.92),
    rgba(10,10,20,.96)
  ),
  url("https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?q=80&w=2071&auto=format&fit=crop");

  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

/* ========================= */
/* PARTICLES */
/* ========================= */

#particles-js{
  position:fixed;
  inset:0;
  z-index:-3;
}

/* ========================= */
/* STARS */
/* ========================= */

body::before{
  content:'';
  position:fixed;
  inset:0;

  background:
  url("https://www.transparenttextures.com/patterns/stardust.png");

  opacity:.12;
  animation:starsMove 120s linear infinite;
  z-index:-2;
}

@keyframes starsMove{

  from{
    transform:translateY(0);
  }

  to{
    transform:translateY(-1000px);
  }

}

/* ========================= */
/* HEADER */
/* ========================= */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:20px 8%;

  background:rgba(10,10,20,.5);

  border-bottom:
  1px solid rgba(255,255,255,.05);

  backdrop-filter:blur(14px);
}

.logo{
  font-size:28px;
  font-weight:800;
}

.logo span{
  color:#8b5cf6;
}

.navbar{
  display:flex;
  gap:30px;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  transition:.3s;
}

.navbar a:hover{
  color:#8b5cf6;
}

.play-btn{
  padding:14px 28px;
  border-radius:18px;
  text-decoration:none;
  color:#fff;
  font-weight:700;

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );

  transition:.3s;
}

.play-btn:hover{
  transform:translateY(-4px);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
  min-height:110vh;
  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
  overflow:hidden;

  padding:140px 20px 120px;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.2),
    rgba(0,0,0,.55)
  );

  z-index:1;
}

.hero-content{
  position:relative;
  z-index:5;
  max-width:900px;
}

.hero-tag{
  display:inline-flex;

  padding:12px 20px;
  border-radius:999px;

  background:
  rgba(139,92,246,.14);

  border:
  1px solid rgba(139,92,246,.25);

  color:#c4b5fd;

  margin-bottom:30px;
}

.hero h1{
  font-size:86px;
  line-height:1.1;
  margin-bottom:20px;
  font-weight:800;
}

.hero h1 span{
  color:#8b5cf6;
}

.hero p{
  color:#d1d5db;
  font-size:20px;
  line-height:1.8;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;

  margin-bottom:45px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-primary,
.btn-secondary{
  padding:18px 32px;
  border-radius:18px;
  border:none;

  font-size:15px;
  font-weight:700;

  cursor:pointer;
  transition:.3s;
}

.btn-primary{
  color:#fff;

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );
}

.btn-secondary{
  text-decoration:none;
  color:#fff;

  background:
  rgba(255,255,255,.06);

  border:
  1px solid rgba(255,255,255,.08);
}

.btn-primary:hover,
.btn-secondary:hover{
  transform:translateY(-4px);
}

/* ========================= */
/* HERO GLOW */
/* ========================= */

.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
}

.hero-glow-1{
  width:600px;
  height:600px;

  top:-250px;
  left:-150px;

  background:
  rgba(139,92,246,.25);
}

.hero-glow-2{
  width:500px;
  height:500px;

  right:-100px;
  bottom:-150px;

  background:
  rgba(6,182,212,.15);
}

/* ========================= */
/* SERVER STATUS */
/* ========================= */

.server-box{
  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:30px;
  padding:40px;

  backdrop-filter:blur(16px);
}

.stats{
  display:flex;
  justify-content:space-between;
  gap:30px;
  margin-top:30px;
}

.stat-item{
  flex:1;
}

.stat-item span{
  font-size:34px;
  font-weight:700;
  color:#8b5cf6;
}

/* ========================= */
/* SECTION */
/* ========================= */

section{
  position:relative;
  z-index:2;
  padding:120px 8%;
}

.join-guide{
  margin-top:-90px;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#8b5cf6;
  font-size:14px;
  letter-spacing:2px;
}

.section-title h2{
  font-size:48px;
  margin-top:10px;
}

/* ========================= */
/* GRID */
/* ========================= */

.grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:30px;
}

.events .grid,
.servers .grid,
.store .grid{
  max-width:1200px;
  margin:auto;
}

/* ========================= */
/* CARD */
/* ========================= */

.card,
.guide-card,
.community-box,
.contact-box{
  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:28px;

  backdrop-filter:blur(18px);

  padding:35px;

  transition:.3s;
}

.card:hover,
.guide-card:hover,
.community-box:hover,
.contact-box:hover{
  transform:translateY(-8px);

  border-color:
  rgba(139,92,246,.35);

  box-shadow:
  0 0 30px rgba(139,92,246,.15);
}

.card h3{
  margin-bottom:18px;
  font-size:26px;
}

.card p{
  color:#d1d5db;
  line-height:1.7;
}

/* ========================= */
/* RANK GRID */
/* ========================= */

.rank-grid{
  max-width:1400px;
  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(6, 1fr);

  gap:30px;

  padding-top:40px;
}

/* ========================= */
/* TOP ROW */
/* ========================= */

.rank-card:nth-child(1){
  grid-column:1 / 3;
}

.rank-card:nth-child(2){
  grid-column:3 / 5;
}

.rank-card:nth-child(3){
  grid-column:5 / 7;
}

/* ========================= */
/* BOTTOM ROW */
/* ========================= */

.rank-card:nth-child(4){
  grid-column:2 / 4;
}

.rank-card:nth-child(5){
  grid-column:4 / 6;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .rank-grid{
    grid-template-columns:1fr;
  }

  .rank-card:nth-child(1),
  .rank-card:nth-child(2),
  .rank-card:nth-child(3),
  .rank-card:nth-child(4),
  .rank-card:nth-child(5){
    grid-column:auto;
  }

}

/* ========================= */
/* RANK CARD */
/* ========================= */

.rank-card{
  position:relative;
  overflow:hidden;
  isolation:isolate;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  padding:30px;
  border-radius:25px;

  border:
  1px solid rgba(255,255,255,.1);

  backdrop-filter:blur(12px);

  transition:.3s;
}

.rank-card:hover{
  transform:
  translateY(-12px)
  scale(1.02);

  border-color:
  rgba(255,255,255,.2);
}

/* ========================= */
/* RANK TOP */
/* ========================= */

.rank-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:20px;
}

.rank-top h3{
  font-size:28px;
  font-weight:700;
}

/* ========================= */
/* RANK LIST */
/* ========================= */

.rank-card ul{
  margin:25px 0;

  display:flex;
  flex-direction:column;
  gap:12px;
}

/* ========================= */
/* BUY BUTTON */
/* ========================= */

.buy-btn{
  margin-top:auto;

  display:block;
  text-align:center;

  padding:14px;
  border-radius:14px;

  text-decoration:none;
  font-weight:700;

  background:
  linear-gradient(
    90deg,
    #7c3aed,
    #06b6d4
  );

  color:#fff;

  transition:.3s;
}

.buy-btn:hover{
  transform:scale(1.03);
}

/* ========================= */
/* RANK EFFECT */
/* ========================= */

.rank-card::before{
  content:"";

  position:absolute;

  width:250px;
  height:250px;

  top:-80px;
  right:-80px;

  border-radius:50%;

  filter:blur(60px);

  opacity:.45;

  z-index:-1;

  animation:
  pulseGlow 5s infinite alternate;
}

.rank-card::after{
  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.08),
    transparent 40%
  );

  z-index:-1;
}

/* ========================= */
/* RANK COLORS */
/* ========================= */

.asteroid{
  background:
  linear-gradient(
    135deg,
    rgba(255,255,255,.08),
    rgba(80,80,80,.08)
  );
}

.asteroid::before{
  background:#fff;
}

.bulan{
  background:
  linear-gradient(
    135deg,
    rgba(59,130,246,.18),
    rgba(37,99,235,.08)
  );
}

.bulan::before{
  background:#3b82f6;
}

.orbiter{
  background:
  linear-gradient(
    135deg,
    rgba(168,85,247,.18),
    rgba(124,58,237,.08)
  );
}

.orbiter::before{
  background:#a855f7;
}

.galaxy{
  background:
  linear-gradient(
    135deg,
    rgba(236,72,153,.18),
    rgba(147,51,234,.08)
  );
}

.galaxy::before{
  background:#ec4899;
}

.milkyway{
  background:
  linear-gradient(
    135deg,
    rgba(251,191,36,.22),
    rgba(245,158,11,.08)
  );
}

.milkyway::before{
  background:#fbbf24;
}

/* ========================= */
/* SECTION EFFECT */
/* ========================= */

.features,
.servers,
.events,
.store,
.join-guide,
.community,
.contact{
  position:relative;
  overflow:hidden;
}

.features::before,
.servers::before,
.events::before,
.store::before,
.join-guide::before,
.community::before,
.contact::before{
  content:"";

  position:absolute;
  inset:40px;

  border-radius:40px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02)
  );

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(18px);

  z-index:-1;
}

.features::after,
.servers::after,
.events::after,
.store::after,
.join-guide::after,
.community::after,
.contact::after{
  content:"";

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  filter:blur(120px);

  opacity:.15;

  z-index:-2;

  animation:
  sectionGlow 10s infinite alternate;
}

/* ========================= */
/* SECTION COLORS */
/* ========================= */

.features::after{
  background:#8b5cf6;
  top:-150px;
  left:-100px;
}

.servers::after{
  background:#06b6d4;
  bottom:-150px;
  right:-100px;
}

.events::after{
  background:#ec4899;
  top:-100px;
  right:-100px;
}

.store::after{
  background:#f59e0b;
  bottom:-100px;
  left:-100px;
}

.join-guide::after{
  background:#22c55e;
  top:-100px;
  left:-100px;
}

.community::after{
  background:#6366f1;
  bottom:-100px;
  right:-100px;
}

.contact::after{
  background:#14b8a6;
  top:-100px;
  left:-100px;
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact{
  padding-top:0;
}

.contact-box{
  max-width:850px;
  margin:auto;
  text-align:center;
}

.contact-box p{
  margin:20px 0 30px;
  color:#d1d5db;
}

.community-box{
  max-width:850px;
  margin:auto;
  text-align:center;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
  position:relative;

  padding:80px 20px 40px;

  margin-top:100px;

  border-top:
  1px solid rgba(255,255,255,.06);

  background:
  linear-gradient(
    to top,
    rgba(10,10,20,.95),
    rgba(10,10,20,.7)
  );
}

/* ========================= */
/* FOOTER CONTENT */
/* ========================= */

.footer-content{
  max-width:1200px;
  margin:auto;

  text-align:center;
}

/* ========================= */
/* FOOTER LOGO */
/* ========================= */

.footer-logo{
  font-size:38px;
  font-weight:800;

  color:#fff;
}

.footer-logo span{
  color:#8b5cf6;
}

/* ========================= */
/* FOOTER TEXT */
/* ========================= */

.footer-text{
  max-width:700px;

  margin:
  25px auto;

  color:#9ca3af;

  line-height:1.8;
  font-size:17px;
}

/* ========================= */
/* SOCIALS */
/* ========================= */

.footer-socials{
  display:flex;
  justify-content:center;
  gap:20px;

  margin-top:30px;
}

.footer-socials a{
  width:55px;
  height:55px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  font-size:22px;

  color:#fff;
  text-decoration:none;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  transition:.3s;
}

.footer-socials a:hover{
  transform:
  translateY(-6px);

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );
}

/* ========================= */
/* FOOTER BOTTOM */
/* ========================= */

.footer-bottom{
  margin-top:40px;

  padding-top:25px;

  border-top:
  1px solid rgba(255,255,255,.06);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;

  gap:12px;
}

/* ========================= */
/* COPYRIGHT */
/* ========================= */

.footer-center{
  color:#9ca3af;

  font-size:14px;
  line-height:1.7;
}

/* ========================= */
/* CREATOR */
/* ========================= */

.footer-creator{
  color:#9ca3af;

  font-size:14px;
}

.footer-creator strong{
  color:#fff;

  font-weight:700;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .footer-bottom{
    flex-direction:column;
  }

}
/* ========================= */
/* TOAST */
/* ========================= */

.toast{
  position:fixed;

  left:50%;
  bottom:30px;

  transform:translateX(-50%);

  background:#8b5cf6;
  color:#fff;

  padding:14px 26px;
  border-radius:14px;

  opacity:0;
  pointer-events:none;

  transition:.3s;
}

.toast.show{
  opacity:1;
}

/* ========================= */
/* ANIMATION */
/* ========================= */

@keyframes pulseGlow{

  0%{
    transform:scale(1);
    opacity:.35;
  }

  100%{
    transform:scale(1.2);
    opacity:.55;
  }

}

@keyframes sectionGlow{

  0%{
    transform:scale(1);
    opacity:.12;
  }

  100%{
    transform:scale(1.2);
    opacity:.22;
  }

}

/* ========================= */
/* STORE DESC */
/* ========================= */

.store-desc{
  max-width:850px;

  margin:
  20px auto 0;

  text-align:center;

  color:#d1d5db;

  font-size:18px;
  line-height:1.8;
}

/* ========================= */
/* STORE CARD */
/* ========================= */

.store .grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit, minmax(320px,1fr));

  gap:30px;
  align-items:stretch;
}

.store-card{
  position:relative;
  overflow:hidden;

  display:flex;
  flex-direction:column;

  height:100%;
  min-height:560px;
}

.store-card::before{
  content:"";

  position:absolute;

  width:220px;
  height:220px;

  top:-80px;
  right:-80px;

  border-radius:50%;

  background:
  rgba(139,92,246,.15);

  filter:blur(70px);
}

/* isi card */
.store-card p{
  color:#d1d5db;
  line-height:1.8;
}

/* feature list otomatis rapih */
.store-features{
  margin-top:25px;

  display:flex;
  flex-direction:column;
  gap:12px;

  flex:1;
}

/* tombol selalu di bawah */
.store-buttons{
  display:flex;
  gap:15px;
  margin-top:auto;

  flex-wrap:wrap;
}

.store-btn{
  flex:1;

  text-align:center;

  padding:14px 24px;
  border-radius:14px;

  text-decoration:none;
  color:#fff;
  font-weight:700;

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );

  transition:.3s;
}

.store-btn.secondary{
  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.1);
}

/* mobile */
@media(max-width:768px){

  .store-card{
    min-height:auto;
  }

  .store-buttons{
    flex-direction:column;
  }

}

/* ========================= */
/* STORE ICON */
/* ========================= */

.store-icon{
  width:80px;
  height:80px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:22px;

  margin-bottom:25px;

  font-size:36px;

  background:
  linear-gradient(
    135deg,
    rgba(139,92,246,.2),
    rgba(6,182,212,.2)
  );

  border:
  1px solid rgba(255,255,255,.08);
}

/* ========================= */
/* STORE FEATURES */
/* ========================= */

.store-features{
  margin-top:25px;

  display:flex;
  flex-direction:column;
  gap:12px;
}

.store-features li{
  list-style:none;

  padding:14px 16px;
  border-radius:14px;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.06);

  color:#d1d5db;
}

/* ========================= */
/* STORE BUTTONS */
/* ========================= */

.store-buttons{
  display:flex;
  gap:15px;
  margin-top:25px;
  flex-wrap:wrap;
}

.store-btn{
  padding:14px 24px;
  border-radius:14px;
  text-decoration:none;
  color:#fff;
  font-weight:700;

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );

  transition:.3s;
}

.store-btn:hover{
  transform:translateY(-4px);

  box-shadow:
  0 0 25px rgba(139,92,246,.35);
}

.store-btn.secondary{
  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.1);
}

/* ========================= */
/* COMMUNITY BUTTONS */
/* ========================= */

.community-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;

  margin-top:30px;
}

.social-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  min-width:200px;

  padding:16px 24px;
  border-radius:18px;

  text-decoration:none;
  color:#fff;
  font-weight:700;

  transition:.3s;
}

.social-btn i{
  font-size:20px;
}

.social-btn:hover{
  transform:translateY(-5px);

  box-shadow:
  0 0 30px rgba(255,255,255,.15);
}

/* DISCORD */

.discord{
  background:
  linear-gradient(
    135deg,
    #5865F2,
    #404EED
  );
}

/* INSTAGRAM */

.instagram{
  background:
  linear-gradient(
    135deg,
    #f58529,
    #dd2a7b,
    #8134af
  );
}

/* TIKTOK */

.tiktok{
  background:
  linear-gradient(
    135deg,
    #111,
    #25F4EE,
    #FE2C55
  );
}

/* ========================= */
/* GUIDE UI */
/* ========================= */

.ui-card{
  position:relative;
  overflow:hidden;
}

.guide-top{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:30px;
}

.guide-icon{
  width:70px;
  height:70px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:20px;

  font-size:30px;

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );
}

.guide-label{
  color:#8b5cf6;
  font-size:13px;
  letter-spacing:2px;
}

.guide-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.guide-list li{
  display:flex;
  align-items:center;
  gap:15px;

  padding:16px;
  border-radius:16px;

  background:
  rgba(255,255,255,.04);
}

.guide-list li span{
  width:35px;
  height:35px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:#8b5cf6;
  font-weight:700;
}

.welcome-message{
  margin-top:30px;

  padding:18px;
  border-radius:18px;

  text-align:center;

  background:
  rgba(34,197,94,.12);

  border:
  1px solid rgba(34,197,94,.25);

  color:#86efac;
}

.guide-buttons{
  display:flex;
  gap:15px;
  margin-top:25px;
}

.guide-btn{
  flex:1;

  text-align:center;
  text-decoration:none;

  padding:14px;
  border-radius:16px;

  color:#fff;
  font-weight:700;

  transition:.3s;
}

.guide-btn.primary{
  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );
}

.guide-btn.secondary{
  background:
  rgba(255,255,255,.06);

  border:
  1px solid rgba(255,255,255,.08);
}

.guide-btn:hover{
  transform:translateY(-4px);
}

/* ========================= */
/* RULES */
/* ========================= */

.modern-rules{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.modern-rules li{
  list-style:none;

  padding:16px 18px;
  border-radius:16px;

  background:
  rgba(255,255,255,.04);
}

.rules-warning{
  margin-top:30px;

  padding:18px;
  border-radius:18px;

  text-align:center;

  background:
  rgba(239,68,68,.12);

  border:
  1px solid rgba(239,68,68,.25);

  color:#fca5a5;
}

/* ========================= */
/* FEATURE CARD */
/* ========================= */

.feature-card{
  position:relative;
  overflow:hidden;
}

.feature-glow{
  position:absolute;

  width:200px;
  height:200px;

  top:-80px;
  right:-80px;

  border-radius:50%;

  background:
  rgba(139,92,246,.18);

  filter:blur(60px);
}

.feature-icon{
  width:80px;
  height:80px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:22px;

  font-size:36px;

  margin-bottom:25px;

  background:
  linear-gradient(
    135deg,
    rgba(139,92,246,.2),
    rgba(6,182,212,.2)
  );

  border:
  1px solid rgba(255,255,255,.08);
}

.feature-btn{
  display:inline-block;

  margin-top:25px;

  padding:12px 22px;
  border-radius:14px;

  text-decoration:none;
  color:#fff;
  font-weight:700;

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );

  transition:.3s;
}

.feature-btn:hover{
  transform:translateY(-4px);
}

/* ========================= */
/* COMMUNITY UI */
/* ========================= */

.modern-community,
.modern-contact{
  position:relative;
  overflow:hidden;
}

.community-glow,
.contact-glow{
  position:absolute;

  width:300px;
  height:300px;

  border-radius:50%;

  filter:blur(100px);

  opacity:.25;

  z-index:-1;
}

.community-glow{
  top:-120px;
  right:-120px;

  background:#8b5cf6;
}

.contact-glow{
  bottom:-120px;
  left:-120px;

  background:#22c55e;
}

/* ========================= */
/* TAG */
/* ========================= */

.community-tag,
.contact-tag{
  display:inline-flex;

  padding:10px 18px;
  border-radius:999px;

  margin-bottom:25px;

  font-size:13px;
  font-weight:700;
  letter-spacing:1px;

  background:
  rgba(255,255,255,.06);

  border:
  1px solid rgba(255,255,255,.08);
}

/* ========================= */
/* CONTACT FEATURES */
/* ========================= */

.contact-features{
  display:flex;
  justify-content:center;
  gap:15px;

  flex-wrap:wrap;

  margin:30px 0;
}

.contact-feature{
  padding:14px 18px;
  border-radius:16px;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  font-weight:600;
}

/* ========================= */
/* DISCORD BUTTON */
/* ========================= */

.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  padding:18px 34px;
  border-radius:20px;

  text-decoration:none;
  color:#fff;
  font-weight:700;

  background:
  linear-gradient(
    135deg,
    #22c55e,
    #16a34a
  );

  transition:.3s;

  box-shadow:
  0 0 30px rgba(34,197,94,.25);
}

.whatsapp-btn i{
  font-size:24px;
}

.whatsapp-btn:hover{
  transform:
  translateY(-5px)
  scale(1.03);

  box-shadow:
  0 0 40px rgba(34,197,94,.45);
}

@media(max-width:768px){

  .navbar{
    display:none;
  }

  .hero{
    min-height:auto;
    padding-top:180px;
  }

  .hero h1{
    font-size:46px;
  }

  .hero p{
    font-size:16px;
  }

  .stats{
    flex-direction:column;
  }

  .section-title h2{
    font-size:34px;
  }

  .join-guide{
    margin-top:-30px;
  }

  .grid,
  .rank-grid{
    grid-template-columns:1fr;
  }

  .features::before,
  .servers::before,
  .events::before,
  .store::before,
  .join-guide::before,
  .community::before,
  .contact::before{
    inset:10px;
  }

}

/* ========================= */
/* WIKI */
/* ========================= */

.wiki-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.wiki-card{
  position:relative;

  padding:35px;
  border-radius:28px;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(18px);

  transition:.3s;
}

.wiki-card:hover{
  transform:translateY(-8px);

  border-color:
  rgba(139,92,246,.35);
}

.wiki-icon{
  width:80px;
  height:80px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:20px;

  font-size:34px;

  margin-bottom:25px;

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );
}

.wiki-card h3{
  font-size:28px;
  margin-bottom:18px;
}

.wiki-card p{
  color:#d1d5db;
  line-height:1.7;
}

.wiki-btn{
  display:inline-block;

  margin-top:25px;

  padding:14px 24px;
  border-radius:16px;

  text-decoration:none;
  color:#fff;
  font-weight:700;

  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );
}

/* ========================= */
/* STATUS */
/* ========================= */

.live-status{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:25px;
}

.status-item{
  display:flex;
  justify-content:space-between;

  padding:16px;
  border-radius:16px;

  background:
  rgba(255,255,255,.05);
}

.online{
  color:#22c55e;
}

/* ========================= */
/* LANGUAGE */
/* ========================= */

.language-select{
  width:100%;

  margin-top:25px;

  padding:16px;
  border:none;
  outline:none;

  border-radius:16px;

  background:
  rgba(255,255,255,.08);

  color:#fff;

  font-size:15px;
}

.language-select option{
  background:#111827;
}

/* ========================= */
/* LEADERBOARD */
/* ========================= */

.leaderboard-box{
  max-width:1000px;
  margin:auto;

  border-radius:28px;
  overflow:hidden;

  border:
  1px solid rgba(255,255,255,.08);
}

.leaderboard-header,
.leaderboard-player{
  display:grid;
  grid-template-columns:
  80px 1fr 150px 150px;

  padding:22px 30px;
}

.leaderboard-header{
  background:
  linear-gradient(
    135deg,
    #8b5cf6,
    #06b6d4
  );

  font-weight:700;
}

.leaderboard-player{
  background:
  rgba(255,255,255,.04);

  border-top:
  1px solid rgba(255,255,255,.06);

  transition:.3s;
}

.leaderboard-player:hover{
  background:
  rgba(255,255,255,.08);
}

/* ========================= */
/* VOTE */
/* ========================= */

.vote-box{
  position:relative;

  max-width:850px;
  margin:auto;

  text-align:center;

  padding:60px;
  border-radius:35px;

  overflow:hidden;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(18px);
}

.vote-glow{
  position:absolute;

  width:350px;
  height:350px;

  top:-150px;
  right:-100px;

  border-radius:50%;

  background:
  rgba(251,191,36,.35);

  filter:blur(100px);
}

.vote-tag{
  display:inline-flex;

  padding:12px 18px;
  border-radius:999px;

  margin-bottom:25px;

  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.08);
}

.vote-box h2{
  font-size:52px;
  margin-bottom:20px;
}

.vote-box p{
  color:#d1d5db;
  line-height:1.8;
}

.vote-buttons{
  display:flex;
  justify-content:center;
  gap:20px;

  flex-wrap:wrap;

  margin-top:35px;
}

.vote-btn{
  padding:18px 30px;
  border-radius:18px;

  text-decoration:none;
  color:#fff;
  font-weight:700;

  background:
  linear-gradient(
    135deg,
    #f59e0b,
    #f97316
  );

  transition:.3s;
}

.vote-btn:hover{
  transform:translateY(-5px);
}

.vote-btn.secondary{
  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.08);
}

.vote-input{
  width:100%;
  max-width:450px;

  margin-top:30px;
  padding:18px;

  border:none;
  outline:none;

  border-radius:18px;

  background:
  rgba(255,255,255,.08);

  color:#fff;

  font-size:16px;
}

.vote-input::placeholder{
  color:#9ca3af;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .leaderboard-header,
  .leaderboard-player{
    grid-template-columns:
    50px 1fr 80px 80px;

    font-size:13px;
    padding:18px;
  }

  .vote-box{
    padding:35px 25px;
  }

  .vote-box h2{
    font-size:36px;
  }

}

/* ========================= */
/* RANK REQUIREMENT */
/* ========================= */

.rank-req{
  margin-top:20px;

  padding:14px;
  border-radius:14px;

  font-size:14px;
  line-height:1.6;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  color:#d1d5db;
}

/* ========================= */
/* RANK PRICE */
/* ========================= */

.rank-price{
  margin-top:20px;

  text-align:center;

  padding:16px;
  border-radius:16px;

  font-size:28px;
  font-weight:800;

  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.1);

  color:#fff;
}