:root {
      --black:       #000000;
      --deep:        #090909;
      --orange:      #f57d1f;
      --orange-dark: #c05e0e;
      --pink:        #f72798;
      --pink-glow:   rgba(247, 39, 152, 0.35);
      --yellow:      #ffff00;
      --white:       #f5f3ee;
      --gray:        #a0998c;
      --border:      rgba(255, 255, 0, 0.15);
      --pixel:       'Press Start 2P', monospace;
    }

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

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 3rem;
      background: rgba(0,0,0,0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Black Ops One', sans-serif;
      font-size: 1.3rem; letter-spacing: 0.08em;
      color: var(--yellow); text-decoration: none;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.5rem; letter-spacing: 0.05em;
      text-transform: uppercase; color: var(--gray); text-decoration: none;
      transition: color 0.2s; line-height: 1.8;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.5rem; letter-spacing: 0.05em;
      text-transform: uppercase; color: var(--black);
      background: var(--pink); padding: 0.7rem 1.2rem;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
      line-height: 1.8; display: inline-block;
    }
    .nav-cta:hover { background: #ff8f30; transform: translateY(-1px); }

    /* ── BUTTONS ── */
    .btn-primary {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.58rem; letter-spacing: 0.05em;
      text-transform: uppercase; color: var(--black);
      background: var(--orange); padding: 1.1rem 2rem;
      text-decoration: none; border: none; cursor: pointer;
      position: relative; overflow: hidden; line-height: 1.8;
      transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
    }
    .btn-primary::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.12);
      transform: translateX(-101%); transition: transform 0.3s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(247,39,152,0.4); }
    .btn-primary:hover::after { transform: translateX(0); }

    .btn-hero {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.58rem; letter-spacing: 0.05em;
      text-transform: uppercase; color: var(--black);
      background: var(--orange); padding: 1.1rem 2rem;
      text-decoration: none; border: none; cursor: pointer; line-height: 1.8;
      transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
    }
    .btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,125,31,0.4); }

    .btn-secondary {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.58rem; letter-spacing: 0.05em;
      text-transform: uppercase; color: var(--white);
      background: transparent; padding: 1.1rem 2rem; line-height: 1.8;
      text-decoration: none; border: 1px solid rgba(245,243,238,0.3);
      cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.2s; display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      justify-content: center; position: relative; overflow: hidden;
      padding: 8rem 3rem 4rem;
      background-image: url('https://longislandbeatbox.com/Long%20Island%20Beatbox/images/New%20York%20Champs%202026/background_2.png');
      background-size: cover;
      background-position: center;
    }
    .hero::after {
      content: ''; position: absolute; top: 40%; left: 30%;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(245,125,31,0.16) 0%, rgba(247,39,152,0.1) 45%, transparent 70%);
      transform: translate(-50%, -50%); pointer-events: none;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,0,0.03) 1px, transparent 1px);
      background-size: 60px 60px; pointer-events: none;
    }
    .hero-slash {
      position: absolute; top: -10%; right: -5%;
      width: 420px; height: 200%;
      background: linear-gradient(135deg, transparent 48%, rgba(245,125,31,0.07) 48%, rgba(247,39,152,0.05) 52%, transparent 52%);
      transform: skewX(-15deg); pointer-events: none;
    }
    .hero-eyebrow {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.55rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--yellow);
      margin-bottom: 1.8rem; line-height: 2;
      display: flex; align-items: center; gap: 1rem;
      animation: fadeUp 0.7s ease both;
    }
    .hero-eyebrow::before {
      content: ''; display: inline-block;
      width: 40px; height: 2px; background: var(--yellow); flex-shrink: 0;
    }
    .hero-title {
      font-family: 'Black Ops One', sans-serif;
      font-size: clamp(2rem, 8vw, 7rem); line-height: 0.92;
      text-transform: uppercase;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero-title .line-red {
      color: var(--orange); display: block;
      text-shadow: 0 0 40px rgba(247,39,152,0.55), 0 4px 20px rgba(245,125,31,0.4);
    }
    .hero-title .line-white { color: var(--white); display: block; }
    .hero-title .line-outline {
      display: block; color: transparent;
      -webkit-text-stroke: 1.5px rgba(245,243,238,0.2);
    }
    .hero-tagline {
      margin-top: 2rem;
      font-family: 'Press Start 2P', monospace;
      font-size: clamp(0.48rem, 1vw, 0.65rem);
      line-height: 2.4; color: var(--gray);
      max-width: 720px;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-tagline strong { color: var(--white); }
    .hero-actions {
      margin-top: 3rem; display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp 0.7s 0.35s ease both;
    }
    .hero-year {
      font-family: 'Black Ops One', sans-serif;
      font-size: clamp(5rem, 18vw, 15rem); line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(245,125,31,0.08);
      position: absolute; right: -1rem; bottom: 2rem;
      pointer-events: none; user-select: none;
      animation: fadeIn 1.2s 0.3s ease both;
    }

    /* ── TICKER ── */
    .ticker-wrap { overflow: hidden; background: var(--orange); padding: 0.8rem 0; white-space: nowrap; }
    .ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
    .ticker-track span {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.52rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--black); padding: 0 2rem;
      line-height: 1.6;
    }
    .ticker-track span.dot { color: rgba(0,0,0,0.35); padding: 0; }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ── SECTION BASE ── */
    .section-label {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.48rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.8rem;
      line-height: 2;
    }
    .section-label::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--orange); flex-shrink: 0; }
    .section-title {
      font-family: 'Black Ops One', sans-serif;
      font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1; text-transform: uppercase;
    }
    .section-title em { font-style: normal; color: var(--pink); text-shadow: 0 0 30px rgba(247,39,152,0.5); }

    /* ── INFO SECTION ── */
    .info-section {
      padding: 6rem 3rem;
      background: var(--deep);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .info-section::before {
      content: ''; position: absolute; top: 50%; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(247,39,152,0.07) 0%, rgba(245,125,31,0.05) 40%, transparent 65%);
      transform: translateY(-50%); pointer-events: none;
    }
    .info-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start;
    }
    .info-body p {
      font-size: 1rem; line-height: 1.75; color: var(--gray); margin-top: 1.2rem;
    }
    .info-body p strong { color: var(--white); font-weight: 600; }
    .info-body p .highlight { color: var(--yellow); font-weight: 700; }
    .info-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

    /* ── INFO IMAGE PLACEHOLDER ── */
    .info-image-wrap {
      width: 100%;
      aspect-ratio: 4 / 5; /* matches 1080×1350 */
      background: #0d0d0d;
      border: 1px solid var(--border);
      overflow: hidden;
      position: relative;
    }
    .info-image-wrap::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(245,125,31,0.04) 0%, rgba(247,39,152,0.04) 100%);
      pointer-events: none; z-index: 1;
    }
    /* When you add a real image, it will fill the wrapper */
    .info-image-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      display: block; position: relative; z-index: 2;
    }
    .info-image-placeholder {
      position: absolute; inset: 0; z-index: 2;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 1.2rem;
      text-align: center; padding: 2rem;
    }
    .info-image-placeholder-icon {
      width: 72px; height: 72px;
      border: 1px solid rgba(245,125,31,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      background: rgba(245,125,31,0.08);
    }
    .info-image-placeholder p {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.5rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gray); line-height: 2.2; margin-top: 0;
    }
    .info-image-placeholder .dim {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.42rem; color: rgba(160,153,140,0.4);
      letter-spacing: 0.08em; line-height: 2;
    }

    /* ── VIDEO SECTION ── */
    .videos-section {
      padding: 6rem 3rem;
      max-width: 1200px; margin: 0 auto;
    }
    .videos-header { margin-bottom: 3rem; }

    /* 3-up grid pages */
    .video-page { display: none; }
    .video-page.active {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--border);
      min-height: 380px;
    }

    .video-card {
      background: var(--deep); display: flex; flex-direction: column;
      position: relative; overflow: hidden;
    }
    .video-player-wrap {
      position: relative; width: 100%; aspect-ratio: 16 / 9;
      background: #0a0a0a;
    }
    .video-player-wrap video {
      width: 100%; height: 100%; object-fit: contain; display: block;
    }
    .video-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0.6rem;
      background: #0c0c0c;
    }
    .video-placeholder-icon {
      width: 48px; height: 48px;
      background: rgba(245,125,31,0.12);
      border: 1px solid rgba(245,125,31,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .video-placeholder p {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.38rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gray); line-height: 2;
    }
    .video-info {
      padding: 1.2rem 1.2rem 1.4rem;
      border-top: 1px solid var(--border);
      flex: 1;
    }
    .video-country {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.42rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 0.6rem; line-height: 2;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .video-name {
      font-family: 'Black Ops One', sans-serif;
      font-size: 1.1rem; color: var(--white); line-height: 1.1; margin-bottom: 0.5rem;
    }
    .video-credentials {
      font-size: 0.82rem; color: var(--gray); line-height: 1.5;
    }

    /* Pagination bar */
    .video-pagination {
      display: flex; align-items: center; justify-content: space-between;
      background: var(--deep);
      border: 1px solid var(--border);
      margin-top: 1.5px;
    }
    .video-page-btn {
      background: none; border: none; cursor: pointer;
      font-family: 'Press Start 2P', monospace;
      font-size: 0.52rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--gray);
      padding: 1.2rem 2rem; display: flex; align-items: center; gap: 0.7rem;
      transition: color 0.2s, background 0.2s; line-height: 1.8;
    }
    .video-page-btn:hover:not(:disabled) { color: var(--white); background: #0f0f0f; }
    .video-page-btn:disabled { opacity: 0.25; cursor: not-allowed; }
    .video-page-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }
    .video-page-info {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.48rem; letter-spacing: 0.1em;
      color: var(--gray); line-height: 2;
    }
    .video-page-info span { color: var(--white); }

    /* ── JUDGES ── */
    .judges-section {
      padding: 6rem 3rem;
      background: var(--deep);
      border-top: 1px solid var(--border);
    }
    .judges-inner { max-width: 1200px; margin: 0 auto; }
    .judges-grid {
      margin-top: 3.5rem;
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5px; background: var(--border);
    }
    .judge-card {
      background: var(--deep); position: relative; overflow: hidden;
      transition: background 0.25s;
    }
    .judge-card:hover { background: #0f0f0f; }
    .judge-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 3px; height: 0; background: var(--pink);
      transition: height 0.35s ease;
    }
    .judge-card:hover::before { height: 100%; }
    .judge-photo { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: #111; }
    .judge-photo img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.85) saturate(1.05);
      transition: filter 0.3s, transform 0.4s;
    }
    .judge-card:hover .judge-photo img { filter: brightness(0.95) saturate(1.15); transform: scale(1.03); }
    .judge-photo-placeholder {
      width: 100%; aspect-ratio: 1 / 1;
      background: linear-gradient(135deg, #0d0d0d 0%, #141414 100%);
      display: flex; align-items: center; justify-content: center;
      border-bottom: 1px solid var(--border);
    }
    .judge-photo-placeholder-icon {
      width: 64px; height: 64px;
      background: rgba(247,39,152,0.1);
      border: 1px solid rgba(247,39,152,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
    }
    .judge-info { padding: 1.6rem 1.6rem 1.8rem; }
    .judge-name {
      font-family: 'Black Ops One', sans-serif;
      font-size: 1.5rem; color: var(--white); line-height: 1; margin-bottom: 0.6rem;
    }
    .judge-title {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.45rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--pink); line-height: 2;
    }
    
    /* ── RESULTS UPGRADED ── */
.results-section {
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background-image: url('YOUR_BACKGROUND_IMAGE_URL');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay so your content stays readable */
/* The section itself needs position: relative */
.results-section {
  position: relative;
}

/* ::before as a full overlay */
.results-section::before {
  content: '';
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;  /* sits behind the inner content */
}

/* Inner content sits above the overlay */
.results-inner {
  position: relative;
  z-index: 1;  /* higher than ::before's z-index */
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* The horizontal words image at the top */
.results-wordmark {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  object-fit: contain;
}
  
  .results-gif {
  width: 200px;
}

  /* Optional: subtle glow to make it pop off the background */
  filter: drop-shadow(0 0 24px rgba(247, 39, 152, 0.35));
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .results-section {
    padding: 4rem 1.5rem;
  }

  .results-wordmark {
    max-width: 100%;
  }

  .results-gif {
    max-width: 100%;
  }
}

    /* ── EVENT CTA ── */
    .event-cta-section {
      padding: 6rem 3rem;
      position: relative; overflow: hidden;
      border-top: 1px solid var(--border);
    }
    .event-cta-section::before {
      content: ''; position: absolute; top: 50%; left: 50%;
      width: 800px; height: 400px;
      background: radial-gradient(ellipse, rgba(247,39,152,0.1) 0%, rgba(245,125,31,0.06) 40%, transparent 70%);
      transform: translate(-50%, -50%); pointer-events: none;
    }
    .event-cta-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .event-cta-emojis { font-size: 2.5rem; margin: 1.5rem 0; letter-spacing: 0.2em; display: block; }
    .event-cta-left p { font-size: 1rem; line-height: 1.7; color: var(--gray); margin-top: 1rem; }
    .event-cta-left p strong { color: var(--white); }
    .event-cta-right { display: flex; flex-direction: column; gap: 1.5rem; }
    .event-detail-block { border-left: 3px solid var(--orange); padding-left: 1.5rem; }
    .event-detail-block .label {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.42rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gray); margin-bottom: 0.4rem; line-height: 2;
    }
    .event-detail-block .value {
      font-family: 'Black Ops One', sans-serif;
      font-size: 1.1rem; text-transform: uppercase; color: var(--white);
    }
    .event-detail-block .value span { color: var(--yellow); }
    .event-cta-actions { margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; }

    /* ── HASHTAGS ── */
    .hashtags-section {
      padding: 3rem; border-top: 1px solid var(--border); text-align: center;
    }
    .hashtags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
    .hashtag {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.45rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--gray);
      border: 1px solid rgba(160,153,140,0.2); padding: 0.5rem 0.9rem; line-height: 1.8;
      transition: color 0.2s, border-color 0.2s;
    }
    .hashtag:hover { color: var(--yellow); border-color: rgba(255,255,0,0.25); }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border); padding: 2.5rem 3rem;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    }
    .footer-brand { font-family: 'Black Ops One', sans-serif; font-size: 1rem; letter-spacing: 0.08em; color: var(--yellow); }
    .footer-copy { font-size: 0.82rem; color: rgba(160,153,140,0.55); }
    .footer-links { display: flex; gap: 2rem; list-style: none; }
    .footer-links a {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.45rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--gray); text-decoration: none;
      transition: color 0.2s; line-height: 2;
    }
    .footer-links a:hover { color: var(--white); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .video-page.active { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero { padding: 6rem 1.5rem 3rem; }
      .info-section, .videos-section, .judges-section, .event-cta-section { padding: 4rem 1.5rem; }
      .info-inner { grid-template-columns: 1fr; gap: 3rem; }
      .event-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
      .judges-grid { grid-template-columns: 1fr; }
      footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
      .hero-year { font-size: 25vw; right: -0.5rem; }
      .hashtags-section { padding: 2rem 1.5rem; }
    }