@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --red: #e23636;
  --red-dark: #a81f1f;
  --gold: #c9a84c;
  --bg: #000;
  --bg2: #0a0a0a;
  --bg3: #111;
  --border: rgba(255,255,255,0.08);
  --text: #fff;
  --muted: #666;
  --bebas: 'Bebas Neue', sans-serif;
  --sans: 'DM Sans', sans-serif;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--bebas);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-brand span { color: #fff; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-links a.active { color: var(--red); }

/* PAGE WRAPPER */
.page { padding-top: 56px; min-height: 100vh; }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
}

.site-footer p {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.site-footer a { color: var(--red); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 2px;
  font-family: var(--bebas);
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover { background: #c82d2d; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  padding: 64px 24px 40px;
}

.section-header .eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h1 {
  font-family: var(--bebas);
  font-size: clamp(40px, 8vw, 80px);
  letter-spacing: 2px;
  line-height: 1;
}

.section-header p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* PARTICLES BG */
.particles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 50%;
  animation: pfloat linear infinite;
  opacity: 0;
}

@keyframes pfloat {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-40px); opacity: 0; }
}

/* MOBILE NAV */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.2s;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: rgba(0,0,0,0.96);
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-hamburger { display: flex; }
}
