/* =========================
   GLOBAL
========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  background: black;
  overflow-x: hidden;
}

/* =========================
   BACKGROUND
========================= */

.bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #2a0000, #000);
  z-index: 0;
}

/* =========================
   PARTICLES (IMPORTANT)
========================= */

#particleCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}


/* ALL CONTENT ABOVE CANVAS */
.nav,
.hero,
.features,
.join-guide,
.server-browser {
  position: relative;
  z-index: 2;
}

/* =========================
   /* =========================
   NAV FIX (NO OVERLAP)
========================= */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  flex-wrap: nowrap;
}

/* LEFT SIDE (logo) */
.logo {
  font-size: 20px;
  font-weight: bold;
  color: red;
  white-space: nowrap;
}

/* RIGHT SIDE WRAPPER */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* LINKS ROW */
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

/* LINKS */
.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.2s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: red;
  transition: 0.2s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* DISCORD BUTTON */
.discord-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  border-radius: 10px;

  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: white;
  text-decoration: none;
  font-weight: 600;

  white-space: nowrap;

  transition: 0.25s;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88,101,242,0.35);
}

/* MOBILE FIX */
@media (max-width: 800px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav-right {
    flex-direction: column;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =========================
   DISCORD BUTTON
========================= */

.discord-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;

  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: white;
  text-decoration: none;
  font-weight: 600;

  transition: 0.2s;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88,101,242,0.35);
}

/* =========================
   HERO
========================= */

.hero {
  text-align: center;
  padding: 120px 20px;
}

.title {
  font-size: 60px;
  color: red;
  letter-spacing: 3px;
  animation: glow 2s infinite alternate;
}

.subtitle {
  color: #aaa;
}

/* =========================
   IP BOX
========================= */

.ip-box {
  margin: 20px auto;
  padding: 10px;
  background: rgba(255,0,0,0.1);
  display: inline-block;
  border: 1px solid red;
}

.ip-box button {
  margin-left: 10px;
  padding: 8px 14px;
  border: 1px solid red;
  background: transparent;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.ip-box button:hover {
  background: red;
  transform: scale(1.05);
}

/* =========================
   STATS
========================= */

.stats {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #ccc;
}

/* =========================
   FEATURES
========================= */

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.card {
  background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,0,0,0.4);
  padding: 20px;
  margin: 10px;
  width: 220px;
  text-align: center;
  border-radius: 10px;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(255,0,0,0.15);
  box-shadow: 0 10px 25px rgba(255,0,0,0.15);
}

/* =========================
   JOIN GUIDE
========================= */

.join-guide {
  padding: 80px 20px;
  text-align: center;
}

.join-guide h2 {
  color: red;
  font-size: 34px;
  margin-bottom: 30px;
}

.step {
  background: rgba(255,0,0,0.08);
  border: 1px solid red;
  margin: 12px auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 8px;
}

.step h3 {
  color: #ff3b3b;
}

/* =========================
   CODE BOX
========================= */

.code-box {
  margin-top: 10px;
  padding: 12px;
  background: black;
  border: 1px solid #444;
  font-family: monospace;
  color: #00ff88;
}

/* =========================
   SERVER BROWSER
========================= */

.server-browser {
  text-align: center;
  padding: 80px 20px;
}

.server-browser h2 {
  color: red;
  font-size: 34px;
  margin-bottom: 20px;
}

.browser-card {
  max-width: 600px;
  margin: 0 auto;

  padding: 30px;
  background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,0,0,0.4);
  border-radius: 10px;
}

.browser-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.browser-desc {
  color: #bbb;
}

.coming-soon {
  font-size: 26px;
  color: orange;
  font-weight: bold;
  margin: 15px 0;
  animation: pulse 1.5s infinite;
}

.disabled-btn {
  padding: 12px 18px;
  border: 1px solid #555;
  background: transparent;
  color: #777;
  border-radius: 8px;
  cursor: not-allowed;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes glow {
  from { text-shadow: 0 0 10px red; }
  to { text-shadow: 0 0 25px red; }
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .title { font-size: 40px; }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
  }

  .stats {
    flex-direction: column;
  }
}

.server-browser {
  text-align: center;
  padding: 80px 20px;
}

.server-browser h2 {
  color: red;
  font-size: 34px;
  margin-bottom: 20px;
}

.browser-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;

  background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,0,0,0.4);
  border-radius: 10px;
}

.browser-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.browser-desc {
  color: #bbb;
}

.coming-soon {
  font-size: 26px;
  color: orange;
  font-weight: bold;
  margin: 15px 0;
  animation: pulse 1.5s infinite;
}

.disabled-btn {
  padding: 12px 18px;
  border: 1px solid #555;
  background: transparent;
  color: #777;
  border-radius: 8px;
  cursor: not-allowed;
}

.page { 
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.card img {
    width: 48x;
    height: 48px;
}
.tiktok-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  border-radius: 10px;

  background: linear-gradient(135deg, #000000, #ff0050, #00f2ea);
  color: white;
  text-decoration: none;
  font-weight: 600;

  white-space: nowrap;

  transition: 0.25s;
}

.tiktok-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,0,80,0.25);
}