body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 25%),
    radial-gradient(circle at top right, rgba(88, 101, 242, 0.12), transparent 25%),
    linear-gradient(180deg, #081226 0%, #0f172a 100%);
  color: white;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #111827 0%, #0f172a 100%);
  padding: 30px 20px;
  text-align: center;
  border-bottom: 3px solid #22c55e;
}

header h1 {
  margin: 10px 0 0 0;
  font-size: 48px;
}

header p {
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header-text {
  text-align: left;
}


/* LOGO */
.logo {
  width: 100px;
  height: auto;
  margin: 0;
}

/* NAVBAR */
.navbar {
  background: rgba(31, 41, 55, 0.95);
  padding: 14px;
  border-top: 2px solid #22c55e;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.navbar a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.navbar a:hover {
  color: #22c55e;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #22c55e;
  left: 0;
  bottom: -5px;
  transition: width 0.25s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.active {
  color: #22c55e !important;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.active::after {
  width: 100% !important;
}

/* MAIN */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  padding: 60px 30px;
  border-radius: 18px;
  margin-bottom: 30px;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.15);
  text-align: center;
}

.hero h2 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  color: #dbeafe;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* CARD */
.card {
  background: #111827;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.12);
}

.card h2,
.card h3 {
  margin-top: 0;
}

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  color: black;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.25);
  transition: all 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.45);
}

/* DISCORD BUTTON */
.link-button {
  display: inline-block;
  margin-top: 12px;
  background: #5865f2;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
}

.link-button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* FORM */
form {
  max-width: 700px;
  margin: 0 auto;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 6px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  margin-bottom: 10px;
  background: #f8fafc;
  color: #111827;
}

textarea {
  min-height: 120px;
}

button {
  margin-top: 20px;
  background: #22c55e;
  color: black;
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: #111827;
  margin-top: 40px;
  color: #cbd5e1;
}

/* BURGER MENU */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid #22c55e;
  color: white;
  font-size: 24px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  margin: 0 auto;
}

/* MOBILE */
@media (max-width: 768px) {

  header h1 {
    font-size: 34px;
  }

  header p {
    font-size: 16px;
  }

  .logo {
    width: 100px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  .nav-links.show {
    display: flex;
  }

  .navbar {
    text-align: center;
  }

  .navbar a {
    display: block;
    padding: 10px 0;
  }

  main {
    padding: 20px 12px;
  }

  .hero {
    padding: 30px 18px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .card {
    padding: 18px;
  }

  .button,
  .link-button,
  button {
    max-width: 100%;
    text-align: center;
  }

  input,
  select,
  textarea {
    font-size: 16px;
    max-width: stretch;
  }

  .form-container{
    max-width: 100%;
  }
}