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

:root {
  --bg: #0a0a14;
  --bg2: #12121f;
  --accent: #e04040;
  --accent2: #ff6b3d;
  --text: #e8e8f0;
  --muted: #8888aa;
  --card-bg: #16162a;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  background: radial-gradient(ellipse at 50% 30%, rgba(224, 64, 64, 0.08) 0%, transparent 60%);
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.mint-info {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.mint-badge {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.mint-badge.secondary {
  border-color: var(--muted);
  color: var(--muted);
}

/* Gallery */
.gallery {
  padding: 2rem 0 3rem;
  overflow: hidden;
}
.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-scroll img {
  height: min(60vw, 380px);
  width: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.gallery-scroll img:hover {
  transform: scale(1.03);
}

/* Features */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.features h2, .divisions h2, .cta h2 {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-color: rgba(224, 64, 64, 0.3);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Divisions */
.divisions {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.division-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.division {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.division span {
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.5rem;
}
.division.mythic {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(224, 64, 64, 0.15);
}

/* FAQ */
.faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.faq h2 {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.faq-list {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-list details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-list summary {
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 0;
  color: var(--text);
}
.faq-list summary:hover {
  color: var(--accent);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 0 1.2rem;
}
.faq-list details a {
  color: var(--accent);
  text-decoration: none;
}
.faq-list details a:hover {
  text-decoration: underline;
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg2);
}
.cta p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--accent);
  color: white;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(224, 64, 64, 0.3);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--muted);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--text);
  box-shadow: 0 4px 20px rgba(255,255,255,0.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
