:root {
  --bg: #080706;
  --bg-soft: #11100e;
  --panel: #171411;
  --gold: #f5c542;
  --gold-dark: #b57918;
  --red: #e63946;
  --text: #f6efe1;
  --muted: #b9aa91;
  --border: rgba(245, 197, 66, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.15), transparent 30%),
    radial-gradient(circle at bottom right, rgba(230, 57, 70, 0.12), transparent 25%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 7, 6, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.logo {
  display: inline-grid;
  place-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff36d, #f5c542, #b57918);
  color: #0a0908;
  box-shadow: 0 0 28px rgba(245, 197, 66, 0.35);
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

nav a:hover { color: var(--gold); }

.hero { padding: 92px 0 70px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h1 span {
  background: linear-gradient(90deg, #fff36d, #f5c542 45%, #e63946);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  max-width: 680px;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.server-card {
  width: min(520px, 100%);
  padding: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.08), rgba(255,255,255,0.02));
  border-radius: 22px;
  margin-bottom: 24px;
}

.server-card p {
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 700;
}

.ip-button {
  width: 100%;
  border: 1px solid rgba(245, 197, 66, 0.45);
  background: #0f0d0a;
  color: var(--gold);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.ip-button:hover { background: rgba(245, 197, 66, 0.08); }

.ip-button.large { max-width: 420px; }

small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0908;
}

.btn.secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-panel { display: grid; gap: 16px; }

.stat {
  padding: 24px;
  border-radius: 22px;
  background: rgba(23, 20, 17, 0.88);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--gold);
}

.stat span { color: var(--muted); }

.section { padding: 78px 0; }

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card, .rules > div {
  padding: 24px;
  border-radius: 20px;
  background: rgba(23, 20, 17, 0.78);
  border: 1px solid rgba(245, 197, 66, 0.16);
}

.card h3, .rules h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.card p, .rules p {
  color: var(--muted);
  margin-bottom: 0;
}

.rules-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(245,197,66,0.08);
  border-bottom: 1px solid rgba(245,197,66,0.08);
}

.rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cta { text-align: center; }

.cta p { color: var(--muted); }

footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p { margin-bottom: 0; }

@media (max-width: 820px) {
  .hero-grid, .cards, .rules { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero { padding-top: 64px; }
}
