* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 120, 0, 0.25), transparent 35%),
    linear-gradient(180deg, #070707 0%, #121212 55%, #050505 100%);
  color: #e7e7e7;
}

a {
  color: #8ee044;
  text-decoration: none;
}

a:hover {
  color: #ff8a00;
}

.site-header {
  min-height: 760px;
  padding: 24px;
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.9)),
    radial-gradient(circle at center, rgba(81, 255, 37, 0.12), transparent 40%);
  border-bottom: 2px solid #2b2b2b;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 12px 22px;
  background: #151515;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  color: #ddd;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
  border-color: #ff8a00;
  color: #ff8a00;
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.35);
}

.discord {
  border-color: #6bbe35;
}

.hero {
  max-width: 1100px;
  margin: 50px auto 0;
  text-align: center;
}

.logo {
  width: min(720px, 95%);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 138, 0, 0.35));
}

.hero h1,
.small-header h1 {
  margin: 10px 0;
  font-size: clamp(42px, 7vw, 92px);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f0f0f0;
  text-shadow:
    0 0 12px rgba(255, 138, 0, 0.7),
    0 0 24px rgba(91, 214, 43, 0.35);
}

.hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 20px;
  color: #bfbfbf;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  background: #ff8a00;
  color: #111;
  font-weight: bold;
  text-transform: uppercase;
}

.btn:hover {
  background: #f0f0f0;
  color: #111;
}

.btn-alt {
  background: #5bd62b;
}

.content {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 20px;
  display: grid;
  gap: 22px;
}

.card,
.forum-box {
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid #333;
  border-left: 5px solid #ff8a00;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.card h2,
.forum-box h2 {
  margin-top: 0;
  color: #ff8a00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card ul {
  margin-bottom: 0;
}

.small-header {
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.9)),
    radial-gradient(circle at top, rgba(255, 138, 0, 0.24), transparent 45%);
  border-bottom: 2px solid #2b2b2b;
}

.small-logo {
  width: min(360px, 90%);
  margin-top: 30px;
}

footer {
  text-align: center;
  padding: 28px;
  color: #888;
  border-top: 1px solid #222;
}
