 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --yellow: #f5e600;
            --black: #0e0e0e;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'PP Neue Montreal', sans-serif;
            background: var(--black);
            color: #fff;
            overflow-x: hidden;
        }

        /* ===========================
           SECTION 1: HERO / BANNER
        =========================== */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            display: block;
        }

        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
        }

        /* Fake band background using CSS gradient to simulate the dark band photo */
        .hero-bg-fake {
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 60%, rgba(60,40,10,0.6) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(40,30,8,0.5) 0%, transparent 50%),
                linear-gradient(180deg, #1a1206 0%, #0e0b04 50%, #0c0a03 100%);
        }

        /* Simulated stage lighting effects */
        .hero-bg-fake::before {
            content: '';
            position: absolute;
            top: 0; left: 20%;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at 50% 0%, rgba(180,140,30,0.15) 0%, transparent 60%);
        }

        .hero-header {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 40px;
            width: 100%;
            flex-shrink: 0;
        }

        .logo-camped {
            width: 90px;
        }

        .hero-nav {
            display: flex;
            align-items: center;
            border: 1.5px solid var(--yellow);
            border-radius: 50px;
            padding: 4px;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(8px);
            gap: 0;
        }

        .hero-nav a {
            color: #f5e600;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 8px 18px;
            transition: color 0.2s;
        }

        .hero-nav a:hover { color: var(--yellow); }

        .hero-nav .nav-cta {
            background: var(--yellow);
            color: var(--black);
            border-radius: 50px;
            padding: 8px 18px;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .logo-sam {
            width: 70px;
        }

        /* Circle SAM logo placeholder */
        .sam-logo-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 2px solid var(--yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.5);
        }

        .sam-logo-circle span {
            font-size: 16px;
            font-weight: 900;
            color: var(--yellow);
            letter-spacing: 0.05em;
        }

        .hero-main {
            position: relative;
            z-index: 10;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .hero-tagline {
            color: var(--yellow);
            font-size: 30px;
            font-weight: 500;
            letter-spacing: 0;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .countdown-grid {
            display: flex;
            gap: 12px;
            margin-bottom: 28px;
        }

        .countdown-box {
            background: var(--yellow);
            color: var(--black);
            border-radius: 14px;
            width: 130px;
            height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .countdown-number {
            font-size: 72px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .countdown-label {
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 60px;
            font-weight: 500;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            line-height: 1;
            color: #f5e600;
            margin-bottom: 32px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--yellow);
            color: var(--black);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 14px 30px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

        .hero-cta:hover {
            background: #fff;
        }

        /* Marquee strip */
        .marquee-strip {
            position: relative;
            z-index: 20;
            background: var(--yellow);
            padding: 14px 0;
            overflow: hidden;
            border-top: 3px solid #000;
            border-bottom: 3px solid #000;
            flex-shrink: 0;
        }

        .marquee-track {
            display: flex;
            white-space: nowrap;
            animation: marqueeScroll 22s linear infinite;
        }

        .marquee-track span {
            display: inline-block;
            font-size: 21px;
            font-weight: 500;
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: -0.01em;
            padding-right: 0;
        }

        @keyframes marqueeScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===========================
           SECTION 2: CAMPED LOGO + INFO
        =========================== */
        .logo-section {
            background: var(--black);
            padding: 80px 40px 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .big-logo-wrapper {
            width: min(700px, 85vw);
            margin-bottom: 40px;
        }

        /* SVG-drawn CAMPED logo text */
        .big-logo-svg {
            width: 100%;
            height: auto;
        }

        .logo-desc {
            max-width: 440px;
            font-size: 14px;
            font-weight: 400;
            color: var(--yellow);
            text-transform: uppercase;
            line-height: 1.5;
            margin-bottom: 30px;
            font-family: 'Barlow Condensed', sans-serif;
        }

        .logo-desc strong {
            font-weight: 800;
            font-size: 12.5px !important;
        }

        .logo-meta {
            font-size: 19px;
            font-weight: 400;
            color: var(--yellow);
            text-transform: uppercase;
            line-height: 1.7;
        }

        /* ===========================
           SECTION 3: ABOUT
        =========================== */
        .about-section {
            background: var(--black);
            padding: 60px 40px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .about-title {
            font-size: 51px;
            font-weight: 400;
            color: var(--yellow);
            text-transform: uppercase;
            letter-spacing: -0.01em;
            margin-bottom: 36px;
        }

        .tab-switcher {
            display: inline-flex;
            border: 2px solid var(--yellow);
            border-radius: 50px;
            overflow: hidden;
            margin-bottom: 0;
        }

        .tab-btn {
            font-size: 10px;
                font-weight: 600;
                color: var(--yellow);
                background: transparent;
                border: none;
                padding: 10px 27px;
                cursor: pointer;
                text-transform: uppercase;
                letter-spacing: 0;
                font-family: 'Barlow Condensed', sans-serif;
                transition: background 0.25s, color 0.25s;
        }

        .tab-btn.active {
            background: var(--yellow);
            color: var(--black);
        }

        .about-panel {
            width: 100%;
            background: var(--yellow);
            margin-top: 0;
            padding: 60px 40px;
            display: none;
            margin-top: 30px;
        }

        .about-panel.active {
            display: block;
        }

        .about-list {
            list-style: disc;
            padding-left: 28px;
            max-width: 520px;
            margin: 0 auto;
            text-align: left;
        }

        .about-list li {
            font-size: 26px;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 8px;
            line-height: 1.3;
            font-family: 'Barlow Condensed', sans-serif;
        }

        .about-footer-row {
            background: var(--black);
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 50px 40px 70px;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--yellow);
            color: var(--black);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: uppercase;
            padding: 14px 28px;
            border-radius: 50px;
            cursor: pointer;
            border: none;
            text-decoration: none;
            font-family: 'Barlow Condensed', sans-serif;
            transition: background 0.2s;
        }

        .download-btn:hover { background: #fff; }

        /* ===========================
   SECTION 4: GALLERY
   =========================== */

/* --- GALLERY BASE --- */
.gallery-section {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-title {
  font-size: 51px;
      font-weight: 400;
      color: var(--yellow);
      text-transform: uppercase;
      letter-spacing: -0.01em;
      margin-bottom: 36px;
}

/* --- THE FILM STRIP (CURVE FIX) --- */
.film-strip {
  position: relative;
  background: #f5e600;
  padding: 40px 0; 
  display: flex;
  width: 160%; /* Extra width for tilt margin */
  margin-left: -30%;

  /* Dual-mask for Top and Bottom Notches */
  --mask: 
    radial-gradient(15px at 50% 0, #0000 98%, #000) 50% 15px / 40px 100% repeat-x,
    radial-gradient(15px at 50% 100%, #0000 98%, #000) 50% calc(100% - 15px) / 40px 100% repeat-x;
  
  -webkit-mask: var(--mask);
  mask: var(--mask);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

/* --- LAYOUT & ROTATION --- */
.strip-1 { transform: rotate(-6deg); z-index: 3; }
/* AFTER */
.strip-2 { transform: rotate(2deg); margin-top: 0; z-index: 2; }
.strip-3 { display: none; } /* Shown only on Mobile */

.strip-inner {
  display: flex;
  gap: 20px;
  width: max-content; /* Prevents image squishing */
}

.gallery-frame {
  width: 380px;
  aspect-ratio: 16 / 10;
  background: #000;
  flex-shrink: 0;
  border: 4px solid #000;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- FUNCTIONAL DIRECTIONAL ANIMATIONS --- */

/* Right to Left (Strip 1 & 3) */
.strip-1 .strip-inner,
.strip-3 .strip-inner {
  animation: scrollRtoL 40s linear infinite;
}

/* Left to Right (Strip 2) */
.strip-2 .strip-inner {
  animation: scrollLtoR 40s linear infinite;
}

@keyframes scrollRtoL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollLtoR {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}



.film-strips-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    overflow: hidden;
}
/* --- MOBILE VIEW (3 ROW ZIG-ZAG) --- */
@media (max-width: 768px) {
  .film-strips-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .strip-3 { 
    display: flex; 
    transform: rotate(-4deg); 
    z-index: 1;
  }
  
  .strip-1 { transform: rotate(-4deg); }
  .strip-2 { 
    transform: rotate(4deg); 
    margin-top: 0; 
  }

  .gallery-frame { width: 260px; }

  .film-strip {
    padding: 25px 0;
    --mask: 
      radial-gradient(10px at 50% 0, #0000 98%, #000) 50% 10px / 25px 100% repeat-x,
      radial-gradient(10px at 50% 100%, #0000 98%, #000) 50% calc(100% - 10px) / 25px 100% repeat-x;
  }
}


/* =====================================================
   SECTION 5 — FOOTER COUNTDOWN (BLACK SECTION)
===================================================== */

.footer-countdown-section {
    background: #0e0e0e;
    padding: 90px 20px 80px;
    text-align: center;
}

.footer-countdown-section .hero-tagline {
    color: #f5e600;
    font-size: 20px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.fc-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.fc-box {
    background: #f5e600;
    color: #000;
    width: 120px;
    height: 130px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fc-number {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}

.fc-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =====================================================
   SECTION 6 — MAIN FOOTER (YELLOW SECTION)
===================================================== */

.site-footer {
    background: #f5e600;
    color: #000;
    padding: 100px 100px;
    display: grid;
    grid-template-columns: 1.3fr 0.6fr 1fr;
    align-items: flex-end;
    gap: 80px;
}

/* LEFT COLUMN */

.footer-logo-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-col img {
    width: 100%;
    margin-bottom: 45px;
}

    .footer-edition {
        font-size: 29px;
        font-family: 'Phenomicon Expanded Italic', sans-serif;
        margin-bottom: 25px;
        margin-top: -32px;
        text-align: right;
        letter-spacing: 2px;
        padding-right: 15px;
    }
.footer-copy {
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-copy a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}


/* CENTER COLUMN — SOCIAL */

.footer-social-col {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000;
    color: #f5e600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon:hover {
    transform: scale(1.08);
}


/* RIGHT COLUMN — FORM */

.footer-form-col {
    display: flex;
    flex-direction: column;
}

.footer-nav-links {
    display: flex;
    justify-content: flex-start;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-nav-links a {
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}

.stay-updated-label {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-input {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

.phone-row {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.phone-prefix {
    padding-left: 16px;
    font-weight: 800;
    font-size: 13px;
}

.phone-row input {
    border: none;
    outline: none;
    padding: 16px;
    width: 100%;
}

.submit-btn {
    background: #000;
    color: #f5e600;
    border: none;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    width: fit-content;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #111;
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    /* Countdown */
    .fc-box {
        width: 70px;
        height: 80px;
        border-radius: 10px;
    }
    .footer-copy a {
        font-size: 13px;
    }
    .footer-copy {
        text-align: center;
        font-size: 13px;
    }
    .fc-number {
        font-size: 28px;
    }

    .fc-label {
        font-size: 8px;
    }

    /* Footer */
    .site-footer {
        grid-template-columns: 1fr;
        padding: 70px 25px;
        gap: 50px;
        align-items: flex-start;
    }

    .footer-logo-col img {
        width: 100%;
        margin-bottom: 25px;
    }

    .footer-edition {
            font-size: 32px;
            margin-bottom: 25px;
            margin-top: -19px;
        }
    .footer-nav-links {
        justify-content: flex-start;
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-social-col {
        justify-content: flex-start;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }
}
        /* ===========================
            MOBILE RESPONSIVENESS (REFINED)
        =========================== */
        @media (max-width: 768px) {
            /* Header Adjustments */
            .hero-header { padding: 16px 20px; }
            .hero-nav { display: none; }

            /* Countdown Adjustments */
            .countdown-box {
                width: 70px;
                height: 80px;
                border-radius: 10px;
            }
            .countdown-number { font-size: 32px; }
            .countdown-label { font-size: 8px; }
            .countdown-grid { gap: 6px; }
            .hero-title { font-size: 36px; }

          
            /* Mobile Menu Block */
            .mobile-menu-block {
                display: flex;
                flex-direction: column;
                background: #0e0e0e;
                width: 100%;
                border-top: 1px solid #333;
                border-bottom: 1px solid #333;
            }

            .mobile-menu-block a {
                color: #ffffff;
                text-decoration: none;
                text-transform: uppercase;
                font-size: 22px;
                font-weight: 500;
                padding: 13px;
                border-bottom: 1px solid #1a1a1a;
                text-align: left;
                margin-left: 30px;
            }

            .mobile-menu-block a.highlight {
                color: var(--yellow);
            }
        } /* <--- This bracket was missing or misplaced, causing desktop issues */

        /* Ensure the separate menu is hidden on desktop */
        @media (min-width: 769px) {
            .mobile-menu-block {
                display: none !important;
            }
        }

        /* CAMPED logo SVG inline style */
        .camped-logo-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 900;
        }

        /* Animated number flip feel */
        .countdown-number {
            transition: transform 0.1s;
        }

        /* Mobile Menu Block - Hidden by default */
.mobile-menu-block {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-block {
        display: flex;
        flex-direction: column;
        background: #0e0e0e; /* Matches your body background */
        width: 100%;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }

    .mobile-menu-block a {
        color: #ffffff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 22px;
        font-weight: 500;
        padding: 13px;
        border-bottom: 1px solid #1a1a1a;
        text-align: left;
        margin-left: 30px;
        transition: 0.3s;
    }

    /* Last item has no border */
    .mobile-menu-block a:last-child {
        border-bottom: none;
    }

    /* Specific style for "Get Tickets" if you want it to stand out */
    .mobile-menu-block a.highlight {
        color: var(--yellow);
    }
}