* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #080b10;
  color: #f5f7fa;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}


/* NAVIGATION */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 6%;

  background: rgba(8, 11, 16, 0.9);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid #202631;
}

.brand {
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.nav nav {
  display: flex;
  gap: 20px;
}

.nav nav a {
  color: #b9c2cf;
  text-decoration: none;
  font-size: 14px;
}

.nav nav a:hover {
  color: #fff;
}


/* HERO */

.hero {
  min-height: 720px;

  display: grid;
  place-items: center;

  text-align: center;

  padding: 90px 20px;

  background:
    radial-gradient(
      circle at 50% 30%,
      #17351f 0,
      #0b1510 25%,
      #080b10 62%
    );
}

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

.eyebrow {
  color: #63e27a;

  font-weight: 800;

  letter-spacing: 3px;

  font-size: 12px;

  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(44px, 9vw, 86px);

  line-height: 1;

  margin: 0 0 16px;
}

.subtitle {
  color: #aeb8c5;

  font-size: 20px;
}


/* SERVER STATUS */

.status-card {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin: 25px 0 14px;

  padding: 12px 18px;

  border: 1px solid #27313c;

  border-radius: 999px;

  background: #10161d;
}

.status-dot {
  display: inline-block;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #888;

  margin-right: 7px;
}

.online {
  background: #4ade80;

  box-shadow:
    0 0 12px #4ade80;
}

.offline {
  background: #ef4444;
}


/* IP */

.ip-box {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 12px;

  max-width: 520px;

  margin: 10px auto;

  padding: 8px 8px 8px 18px;

  background: #111820;

  border: 1px solid #293440;

  border-radius: 12px;

  font-family: monospace;
}

.ip-box button {
  padding: 11px 15px;

  border: 0;

  border-radius: 8px;

  background: #fff;

  color: #111;

  font-weight: 800;

  cursor: pointer;
}


/* BUTTONS */

.buttons {
  display: flex;

  justify-content: center;

  gap: 12px;

  margin-top: 20px;
}

.btn {
  display: inline-block;

  padding: 12px 20px;

  border-radius: 9px;

  background: #1b232d;

  color: #fff;

  text-decoration: none;

  font-weight: 800;

  border: 0;

  cursor: pointer;
}

.btn.primary {
  background: #43d56b;

  color: #061009;
}

.btn.large {
  padding: 15px 28px;
}

.copy-message {
  height: 20px;

  color: #63e27a;

  font-size: 13px;
}


/* SECTIONS */

.section {
  padding: 90px 7%;

  max-width: 1200px;

  margin: auto;
}

.section.alt {
  max-width: none;

  background: #0d1218;
}

.section.alt > * {
  max-width: 1060px;

  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  text-align: center;

  font-size: 38px;

  margin: 0 0 40px;
}

.section > .eyebrow {
  text-align: center;
}

.section-text {
  text-align: center;

  color: #aeb8c5;
}


/* CARDS */

.grid {
  display: grid;

  gap: 20px;
}

.team-grid {
  grid-template-columns:
    repeat(3, 1fr);
}

.vip-grid {
  grid-template-columns:
    repeat(4, 1fr);
}

.card {
  position: relative;

  background: #111820;

  border: 1px solid #26313d;

  border-radius: 16px;

  padding: 28px;

  text-align: center;
}

.avatar {
  font-size: 50px;
}


/* ROLES */

.role {
  display: inline-block;

  padding: 3px 9px;

  border-radius: 5px;

  font-size: 11px;

  font-weight: 900;
}

.owner {
  background: #eab308;

  color: #17120a;
}

.admin {
  background: #60a5fa;

  color: #07111f;
}


/* VIP */

.vip-card ul {
  padding: 0;

  list-style: none;
}

.vip-card li {
  color: #aeb8c5;

  margin-bottom: 12px;
}

.vip-card code {
  color: #63e27a;

  font-family: monospace;
}

.featured {
  border-color: #43d56b;

  transform: translateY(-8px);
}

.popular {
  position: absolute;

  top: 0;

  right: 20px;

  transform: translateY(-50%);

  padding: 4px 9px;

  background: #43d56b;

  color: #061009;

  border-radius: 5px;

  font-size: 10px;

  font-weight: 900;
}


/* RULES */

.rules {
  max-width: 800px;

  margin: auto;
}

.rules p {
  padding: 14px 18px;

  background: #111820;

  border: 1px solid #26313d;

  border-radius: 10px;

  color: #cbd5e1;
}

.rules b {
  color: #63e27a;

  margin-right: 8px;
}


/* VOTE */

.link-grid {
  grid-template-columns:
    repeat(2, 1fr);

  max-width: 800px;

  margin: auto;
}

.link-card {
  color: #fff;

  text-decoration: none;
}

.link-card span {
  font-size: 35px;
}


/* STORE */

.store {
  text-align: center;
}


/* FOOTER */

footer {
  text-align: center;

  padding: 35px;

  color: #687383;

  border-top: 1px solid #202631;

  font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

  .vip-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}

@media (max-width: 750px) {

  .nav {
    flex-direction: column;

    gap: 10px;
  }

  .nav nav {
    gap: 10px;

    flex-wrap: wrap;

    justify-content: center;
  }

  .team-grid,
  .vip-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .ip-box {
    font-size: 12px;
  }

  .hero {
    min-height: 650px;
  }

  .section {
    padding: 70px 20px;
  }

  }
