* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background:
    radial-gradient(circle at top, rgba(57, 255, 20, 0.18), transparent 35%),
    #050805;
  color: white;
  min-height: 100vh;
}

nav {
  width: 100%;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 10, 5, 0.75);
  border-bottom: 1px solid rgba(57, 255, 20, 0.25);
  backdrop-filter: blur(12px);
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #39ff14;
  letter-spacing: 4px;
}

.links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 24px;
  transition: 0.2s;
}

.links a:hover {
  color: #39ff14;
}

.hero {
  min-height: 85vh;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #39ff14;
  border-radius: 999px;
  color: #39ff14;
  background: rgba(57, 255, 20, 0.08);
  margin-bottom: 20px;
}

.hero h1,
.page-title h1 {
  font-size: 80px;
  color: #39ff14;
  text-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
}

.hero p,
.page-title p,
.discord p {
  color: #aaa;
  font-size: 18px;
  max-width: 560px;
  margin: 18px 0;
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(57, 255, 20, 0.4);
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: #39ff14;
}

.btn.primary {
  background: #39ff14;
  color: #041004;
  font-weight: 800;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.35);
}

.panel {
  background: rgba(10, 15, 10, 0.9);
  border: 2px solid rgba(57, 255, 20, 0.45);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.14);
}

.panel h2 {
  color: #39ff14;
  margin-bottom: 24px;
  letter-spacing: 3px;
}

.menu-item {
  padding: 18px;
  margin: 14px 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-item.active {
  background: rgba(57, 255, 20, 0.18);
  border-color: #39ff14;
  color: #39ff14;
}

.cards,
.pricing {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card,
.price-card,
.profile-card {
  background: rgba(10, 15, 10, 0.88);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.08);
}

.card h3,
.price-card h2 {
  color: #39ff14;
  margin-bottom: 12px;
}

.card p,
.price-card p,
.profile-card p {
  color: #aaa;
  line-height: 1.6;
}

.page-title {
  padding: 80px 8% 20px;
  text-align: center;
}

.pricing {
  align-items: stretch;
}

.price-card {
  text-align: center;
}

.price-card h1 {
  font-size: 48px;
  margin: 20px 0;
  color: white;
}

.price-card ul {
  list-style: none;
  margin: 25px 0;
}

.price-card li {
  color: #bbb;
  padding: 10px 0;
}

.popular {
  border-color: #39ff14;
  transform: scale(1.04);
}

.discord {
  padding: 80px 8%;
  text-align: center;
}

.discord p {
  margin-left: auto;
  margin-right: auto;
}

.profile {
  padding: 80px 8%;
  display: flex;
  justify-content: center;
}

.profile-card {
  max-width: 650px;
  text-align: center;
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 30px;
  border: 2px solid #39ff14;
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
  margin-bottom: 20px;
}

.profile-card h1 {
  color: #39ff14;
  font-size: 52px;
}

.role {
  color: white !important;
  margin-bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.stats div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.25);
}

.stats h2 {
  color: #39ff14;
  font-size: 20px;
}

.stats span {
  color: #aaa;
  font-size: 13px;
}

footer {
  padding: 30px;
  text-align: center;
  color: #777;
  border-top: 1px solid rgba(57, 255, 20, 0.15);
}

@media (max-width: 850px) {
  .hero,
  .cards,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-title h1 {
    font-size: 52px;
  }

  nav {
    flex-direction: column;
    gap: 16px;
  }

  .links a {
    margin: 0 8px;
  }

  .popular {
    transform: none;
  }
}
.navbar {
    position: sticky;
    top: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;

    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(57,255,20,.15);
}

.logo {
    color: #39ff14;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #d4d4d4;
    font-size: 16px;
    font-weight: 600;

    transition: .2s;
}

.nav-links a:hover {
    color: #39ff14;
}