@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #090b0a;
  --panel: #111512;
  --text: #e9eee9;
  --muted: #8d968e;
  --accent: #b7d447;
  --accent-dark: #6e8124;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: .03em;
}

.hero {
  min-height: 78vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4,6,5,.96) 0%, rgba(4,6,5,.75) 48%, rgba(4,6,5,.55) 100%),
    radial-gradient(circle at 75% 40%, #39452b 0, #171d17 28%, #090b0a 65%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px, transparent 4px);
}

nav {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { font-size: 22px; font-weight: 700; }
.logo span { color: var(--accent); }

.discord, .btn {
  text-decoration: none;
  color: var(--text);
  border: 1px solid #465044;
  padding: 11px 18px;
  transition: .2s;
}

.discord:hover, .secondary:hover { border-color: var(--accent); color: var(--accent); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 9vh auto 0;
  padding: 0 24px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(55px, 9vw, 110px);
  line-height: .86;
  font-weight: 700;
}

h1 span { color: var(--accent); }

.intro {
  color: #b5bdb5;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 28px 0;
  max-width: 560px;
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { font-size: 14px; font-weight: 600; }
.primary { background: var(--accent); color: #111; border-color: var(--accent); }
.primary:hover { background: #d1e965; }

.server {
  max-width: 1180px;
  margin: auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

h2 { font-size: 42px; margin-bottom: 8px; }
.muted { color: var(--muted); font-family: Arial, sans-serif; }

.server-card {
  background: var(--panel);
  border: 1px solid #242b25;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.label { display: block; color: var(--muted); font-size: 11px; margin-bottom: 5px; }
.server-card strong { font-size: 19px; }

.status { color: #a7d64d; font-size: 13px; }
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #a7d64d;
  border-radius: 50%;
  margin-right: 7px;
  box-shadow: 0 0 10px #a7d64d;
}

.server-card button {
  width: fit-content;
  border: 0;
  padding: 10px 15px;
  background: #242c24;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
}
.server-card button:hover { background: #343e33; }

.features {
  border-top: 1px solid #202620;
  border-bottom: 1px solid #202620;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: auto;
}

.feature { padding: 42px 30px; border-right: 1px solid #202620; }
.feature:last-child { border-right: 0; }
.feature span { color: var(--accent); font-size: 13px; }
.feature h3 { margin: 10px 0; font-size: 25px; }
.feature p { color: var(--muted); font-family: Arial, sans-serif; line-height: 1.5; }

footer {
  max-width: 1180px;
  margin: auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  color: #606960;
  font-size: 11px;
}

@media (max-width: 700px) {
  .server, .features { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid #202620; }
  .feature:last-child { border-bottom: 0; }
  footer { flex-direction: column; gap: 8px; }
}
