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

:root {
  --orange:       #f97316;
  --orange-dark:  #c2580d;
  --orange-light: #fdba74;
  --orange-glow:  rgba(249,115,22,0.25);
  --red:          #dc2626;
  --red-dark:     #991b1b;
  --chakra:       #38bdf8;
  --chakra-dim:   #0ea5e9;
  --purple:       #a855f7;
  --gold:         #eab308;
  --green:        #22c55e;

  --bg:           #110b04;
  --bg2:          #1c1208;
  --bg3:          #241808;
  --bg4:          #2e1f0a;

  --border:       rgba(249,115,22,0.15);
  --border-hover: rgba(249,115,22,0.45);

  --text:         #e8ddd0;
  --text-dim:     #9a8b7a;
  --text-bright:  #fff5eb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle pattern overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(249,115,22,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,11,4,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(249,115,22,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: rgba(249,115,22,0.1);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #c2580d);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 6px 28px rgba(249,115,22,0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid rgba(249,115,22,0.5);
}
.btn-outline:hover {
  background: rgba(249,115,22,0.1);
  border-color: var(--orange);
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2, #4752c4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(88,101,242,0.3);
}
.btn-discord:hover {
  background: linear-gradient(135deg, #6e79f0, #5865F2);
  transform: translateY(-1px);
}

/* ── LAYOUT ── */
.page-content { padding-top: 64px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.page-hero { padding: 4rem 2rem 2.5rem; max-width: 1100px; margin: 0 auto; }

/* ── SECTION TITLES ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.gold-line {
  width: 50px; height: 2px;
  background: linear-gradient(to right, var(--orange), transparent);
  margin: 0.8rem 0 2rem;
  border-radius: 2px;
}

/* ── CARD ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
}
.badge-orange { background: rgba(249,115,22,0.15); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }
.badge-green  { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.badge-red    { background: rgba(220,38,38,0.12); color: #f87171; border: 1px solid rgba(220,38,38,0.25); }
.badge-blue   { background: rgba(56,189,248,0.12); color: var(--chakra); border: 1px solid rgba(56,189,248,0.25); }
.badge-purple { background: rgba(168,85,247,0.12); color: var(--purple); border: 1px solid rgba(168,85,247,0.25); }
.badge-gold   { background: rgba(234,179,8,0.12); color: var(--gold); border: 1px solid rgba(234,179,8,0.25); }

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4rem 0;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  background: var(--bg2);
}
footer a { color: var(--orange-dark); text-decoration: none; }
footer a:hover { color: var(--orange); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── MOBILE ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--orange); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(17,11,4,0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 1rem; font-size: 0.9rem; }
  .section-title { font-size: 1.5rem; }
  .btn { font-size: 0.85rem; padding: 0.75rem 1.4rem; }
}
