/* ─── Reset & base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: #1a2332;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

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

main { flex: 1; }

/* ─── Navigation ───────────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 2rem;
  background-color: rgba(15, 20, 30, 0.85);
  border-bottom: 1px solid rgba(255, 128, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FF8000;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  line-height: 1;
}

.nav-logo:hover { color: #ffa040; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a:hover { color: #FF8000; }

.nav-links .nav-download {
  background-color: #FF8000;
  color: #1a2332;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background-color 0.2s, transform 0.15s;
}

.nav-links .nav-download:hover {
  background-color: #ffa040;
  color: #1a2332;
  transform: translateY(-1px);
}

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 56px);
  text-align: center;
  padding: 4rem 2rem;
  gap: 0;
}

.hero-logo-img {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: 'Audiowide', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  line-height: 1;
}

.hero-plus {
  color: #FF8000;
}

.hero-tagline {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 128, 0, 0.25);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s, transform 0.15s, border-color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: #FF8000;
  color: #1a2332;
  border: 2px solid #FF8000;
}

.btn-primary:hover {
  background-color: #ffa040;
  border-color: #ffa040;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}

.btn-discord:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* ─── General page content ─────────────────────────────────────────── */
.page-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-wrap h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.page-wrap h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #FF8000;
}

.page-wrap p { margin-bottom: 1rem; color: rgba(255, 255, 255, 0.85); }

.page-wrap a { color: #FF8000; }
.page-wrap a:hover { text-decoration: underline; }

/* ─── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .site-nav { padding: 0.875rem 1rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.8rem; }
  .hero-logomark { font-size: 3rem; }
  .btn { padding: 0.65rem 1.5rem; font-size: 0.85rem; }
}
