@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500&display=swap');

:root {
  --red: #d41a1a;
  --red-dark: #a01010;
  --gold: #f5a800;
  --gold-light: #ffc93c;
  --black: #000000;
  --off-black: #000000;
  --cream: #fff8e7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
}
.nav-logo {
  font-family: 'Boogaloo', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 2px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.nav-cta:hover,
.nav-cta.active { background: var(--gold) !important; color: var(--black) !important; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 48px 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(212,26,26,0.25);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 80px,
    rgba(212,26,26,0.04) 80px, rgba(212,26,26,0.04) 82px
  );
  animation: driftStripes 20s linear infinite;
}
.page-hero::after {
  display: none;
}
@keyframes driftStripes {
  0%   { transform: translateX(0); }
  100% { transform: translateX(160px); }
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  margin-bottom: 18px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.page-title {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.page-title .t-red  { color: var(--red); }
.page-title .t-gold { color: var(--gold); }
.page-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255,248,231,0.65);
  max-width: 500px;
  line-height: 1.65;
}

/* ── SECTION HELPERS ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}
.section-title span { color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1rem;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  padding: 14px 36px; background: var(--red); color: #fff;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  padding: 13px 34px; border: 2px solid var(--gold); color: var(--gold);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all .2s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden; background: var(--red); padding: 12px 0;
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
}
.ticker { display: flex; white-space: nowrap; animation: ticker 22s linear infinite; }
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase;
  color: #fff; padding: 0 32px;
}
.ticker-star { color: var(--gold); padding: 0 6px; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--red); padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 40px,
    rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 42px);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2rem, 5vw, 3.8rem);
  text-transform: uppercase; color: #fff; line-height: 1; margin-bottom: 10px;
}
.cta-band h2 span { color: var(--gold); }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1rem; }
.btn-white {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; padding: 15px 44px; background: #fff; color: var(--red);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: inline-block; transition: background .2s, color .2s, transform .15s;
}
.btn-white:hover { background: var(--black); color: var(--gold); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--off-black); border-top: 2px solid rgba(212,26,26,0.3);
  padding: 28px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Boogaloo', cursive; font-size: 1.2rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-brand span { color: var(--red); }
.footer-copy { font-size: 0.8rem; color: rgba(255,248,231,0.4); letter-spacing: 0.5px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 24px 50px; }
  footer { padding: 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-band { padding: 60px 24px; }
}
