:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --card: #161616;
  --border: #222;
  --accent: #e8ff00;
  --accent2: #ff3c00;
  --text: #f0f0f0;
  --muted: #666;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  cursor: pointer;
}

.nav-logo span { color: var(--accent2); }

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  color: var(--muted);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  background: none;
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(232,255,0,0.04);
}

/* PAGES */
.page { display: none; min-height: calc(100vh - 64px); }
.page.active { display: block; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,255,0,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255,60,0,0.06) 0%, transparent 60%);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 4px;
  position: relative;
}

.hero h1 .the {
  font-size: 0.35em;
  color: var(--muted);
  display: block;
  letter-spacing: 10px;
}

.hero h1 .goon { color: var(--text); }

.hero h1 .squad {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}

.hero-sub {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 1.5rem;
  position: relative;
}

/* MEMBERS */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
}

.member-card {
  background: var(--card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.member-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.member-name {
  font-size: 1.4rem;
  background: none;
  border: none;
  color: var(--text);
}

.member-desc {
  background: none;
  border: none;
  color: var(--muted);
}

/* BUTTONS */
.btn-primary {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
}

/* QUOTES */
.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.quote-text {
  font-style: italic;
}

.quote-author {
  color: var(--accent);
  font-weight: bold;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }