
/* ==============================================
   HERO INTRO ANIMATION SYSTEM
   Sequenced reveal: particles → video → container → text → button → gif → nav → player
   ============================================== */

/* --- Initial hidden states (applied by .hero-intro-pending class on body) --- */
body.hero-intro-pending nav {
    transform: translateY(-100%);
    opacity: 0;
}

body.hero-intro-pending #hero-video-bg {
    opacity: 0 !important;
}

body.hero-intro-pending .hero-left-col {
    transform: translateX(-80px);
    opacity: 0;
}

body.hero-intro-pending .hero-eyebrow,
body.hero-intro-pending .hero-main-text,
body.hero-intro-pending .hero-subtitle,
body.hero-intro-pending .hero-description {
    opacity: 0;
    transform: translateY(15px);
}

body.hero-intro-pending .hero-cta {
    opacity: 0;
    transform: scale(0);
}

body.hero-intro-pending .hero-logo-col {
    transform: translateX(80px);
    opacity: 0;
}

body.hero-intro-pending .marquee {
    opacity: 0;
    transform: translateY(20px);
}

body.hero-intro-pending #mp3-player-widget {
    transform: translateY(100%) !important;
    opacity: 0 !important;
}

/* --- Transition classes (scoped to intro animation) --- */
body.hero-intro-pending nav,
body.hero-intro-animating nav {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease !important;
}

body.hero-intro-pending #hero-video-bg,
body.hero-intro-animating #hero-video-bg {
    transition: opacity 1s ease !important;
}

body.hero-intro-pending .hero-left-col,
body.hero-intro-animating .hero-left-col {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease !important;
}

body.hero-intro-pending .hero-eyebrow,
body.hero-intro-pending .hero-main-text,
body.hero-intro-pending .hero-subtitle,
body.hero-intro-pending .hero-description,
body.hero-intro-animating .hero-eyebrow,
body.hero-intro-animating .hero-main-text,
body.hero-intro-animating .hero-subtitle,
body.hero-intro-animating .hero-description {
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

body.hero-intro-pending .hero-cta,
body.hero-intro-animating .hero-cta {
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.hero-intro-pending .hero-logo-col,
body.hero-intro-animating .hero-logo-col {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease !important;
}

body.hero-intro-pending .marquee,
body.hero-intro-animating .marquee {
    transition: opacity 0.6s ease, transform 0.6s ease !important;
}

/* --- Typewriter cursor effect --- */
.hero-typewriter-cursor::after {
    content: '|';
    display: inline-block;
    color: var(--accent-lime);
    animation: hero-blink-cursor 0.6s step-end infinite;
    margin-left: 2px;
    font-weight: 300;
}

@keyframes hero-blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Hero main text word reveal --- */
.hero-main-text .word-reveal {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: 0.25em;
}
.hero-main-text .word-reveal:last-child {
    margin-right: 0;
}
.hero-main-text .word-reveal.reveal-done {
    overflow: visible;
}
.hero-main-text .word-reveal .word-inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.hero-main-text .word-reveal .word-inner.revealed {
    transform: translateY(0);
    opacity: 1;
}

/* Player reveal is handled by JS removing inline transform */


/* --- NEW HERO LAYOUT (Split) --- */
.hero-layout-new {
    display: flex;
    flex-direction: column;
    padding-top: 80px; /* Nav height */
    /* padding-bottom removed to extend bg behind player */
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
}

/* Override hero gradient when video bg is present */
.hero-clean.hero {
    background: transparent;
}

@media (min-width: 900px) {
    .hero-layout-new {
        flex-direction: row;
        align-items: stretch;
        height: 100vh; /* Fixed height viewport */
        overflow: hidden; 
    }
}

/* Left Column */
.hero-left-col {
    flex: 1.2; /* Slightly wider */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2rem 100px 1rem; /* Reduced left padding to remove gap, increased bottom */
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at top left, rgba(138, 43, 226, 0.1), transparent 40%);
}

.hero-text-content {
    margin-bottom: auto;
    margin-top: auto;
    max-width: none;
    /* Glassmorphism container */
    background: rgba(10, 10, 20, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2rem 1.6rem;
    border-radius: 16px;
    /* Gradient neon border */
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden; /* Contain shine sweep inside container */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hide ticket button punchholes inside hero container */
.hero-text-content .ticket-btn::before,
.hero-text-content .ticket-btn::after {
    display: none;
}

/* Gradient neon border via pseudo-element */
.hero-text-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-lime), var(--accent-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

/* Shine sweep overlay */
.hero-text-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 60%
    );
    border-radius: 16px;
    clip-path: inset(0 0 0 0 round 16px);
    pointer-events: none;
    transition: left 0.7s ease;
}

/* Hover: lift, glow, shine sweep, border brightens */
.hero-text-content:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 12px 40px rgba(138, 43, 226, 0.25),
        0 0 30px rgba(212, 255, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-text-content:hover::before {
    opacity: 0.9;
}

.hero-text-content:hover::after {
    left: 120%;
}

.hero-offers-area {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.08); /* Subtle separator */
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Right Column */
.hero-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 40px 2rem; /* Decreased bottom padding to remove unneeded scrolling space */
    background: rgba(80, 40, 100, 0.35); /* More translucent and colored (Purple Tint) */
    backdrop-filter: blur(12px);
    border-left: none; /* Removed border that may cause black line */
    overflow-y: auto; 
    gap: 1.5rem;
}

/* Sections */
.dashboard-section {
    width: 100%;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-purple);
    padding-left: 10px;
}

.section-header-row h3 {
    font-family: var(--font-head);
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: white;
    letter-spacing: 1px;
    margin: 0;
}

.view-all-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.view-all-link:hover { color: white; text-decoration: underline; }

/* Grids */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid-3-col-events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 1400px) {
    .grid-3-col-events { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid-2-col, .grid-3-col-events { grid-template-columns: 1fr; }
}


/* New Card Styles */
.hero-card {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.2);
}

/* Act Cards (Rectangular/Landscape) */
.act-card {
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
}

.act-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.act-card-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    text-transform: uppercase;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.act-card-subtitle {
    font-size: 0.8rem;
    color: #ddd; 
    margin-bottom: 8px;
}

.act-card-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.act-tag {
    font-size: 0.65rem;
    background: rgba(138, 43, 226, 0.8); /* Purple */
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Event Cards (Vertical / Poster Style) */
.event-card-vert {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    background: #141414;
}

.event-card-img {
    flex: 2;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-card-body {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #141414;
    border-top: 1px solid #222;
}

.event-card-float-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-lime);
    color: black;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 4px 8px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    border-radius: 2px;
}

.event-card-title {
    font-weight: bold;
    font-size: 1.15rem; /* Increased from 0.95rem */
    line-height: 1.25;
    color: white;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-meta {
    font-size: 0.75rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Offer Card */
.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.2s;
}
.offer-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #555;
}

.offer-title {
    color: var(--accent-lime);
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.offer-desc {
    font-size: 0.8rem;
    color: #bbb;
    line-height: 1.4;
}

/* ==============================================
   HERO VIDEO BACKGROUND
   ============================================== */

#hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    transition: opacity 0.1s linear;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.25) 40%,
        rgba(10, 10, 10, 0.6) 80%,
        rgba(10, 10, 10, 0.95) 100%
    );
    pointer-events: none;
}

#hero-video-credit {
    position: absolute;
    bottom: 60px;
    right: 2rem;
    z-index: 10;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

#hero-video-credit strong {
    color: var(--accent-lime);
}


/* ==============================================
   CLEAN HERO LAYOUT (hero-clean)
   Hero text left, spinning logo right (bigger)
   Video background behind both columns
   ============================================== */

.hero-clean .hero-left-col {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 2rem 60px 3rem;
    position: relative;
    z-index: 2;
}

.hero-clean .hero-text-content {
    margin: auto 0;
    max-width: none;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.hero-logo-col {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem 3rem 2rem 0;
}

.hero-clean #hero-center-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 500px;
    height: 500px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-clean #spinning-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.5));
}

/* Desktop */
@media (min-width: 900px) {
    .hero-clean {
        flex-direction: row;
        align-items: stretch;
        height: 100vh;
        overflow: hidden;
    }
}

/* Tablet */
@media (max-width: 899px) {
    .hero-clean .hero-left-col {
        padding: 2rem 2rem 1rem 2rem;
        align-items: center;
        text-align: center;
    }
    .hero-clean .hero-text-content {
        align-items: center;
        text-align: center;
        padding: 1.5rem 1.5rem;
    }
    .hero-logo-col {
        padding: 1rem 2rem 2rem 2rem;
    }
    .hero-clean #hero-center-logo {
        width: 300px;
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-clean .hero-left-col {
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    }
    .hero-logo-col {
        padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    }
    .hero-clean #hero-center-logo {
        width: 200px;
        height: 200px;
    }
    #hero-video-credit {
        bottom: 50px;
        right: 1rem;
        font-size: 0.6rem;
    }
}


/* ==============================================
   FEATURED STRIP SECTION (below hero)
   2-column layout: Events (left) | Acts + Offers (right)
   Translucent glass containers, particles visible
   ============================================== */

.featured-strip-section {
    background: transparent;
    padding: 1.5rem 2rem 2rem;
    position: relative;
    z-index: 5;
}

.featured-strip-inner {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Right column wrapper: no longer needed as wrapper, acts + offers are direct grid children */
.featured-strip-right {
    display: contents;
}

/* Each featured block = translucent glass card */
.featured-strip-block {
    min-width: 0;
    background: rgba(15, 15, 25, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.featured-strip-block:hover {
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.08);
}

/* ── Per-container color themes ── */

/* Events = purple */
.featured-strip-events {
    background: rgba(80, 20, 140, 0.2);
    border-color: rgba(138, 43, 226, 0.25);
}
.featured-strip-events:hover {
    background: rgba(80, 20, 140, 0.28);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 0 35px rgba(138, 43, 226, 0.12);
}

/* Acts = lime / yellow */
.featured-strip-acts {
    background: rgba(100, 120, 0, 0.15);
    border-color: rgba(212, 255, 0, 0.22);
}
.featured-strip-acts:hover {
    background: rgba(100, 120, 0, 0.22);
    border-color: rgba(212, 255, 0, 0.45);
    box-shadow: 0 0 35px rgba(212, 255, 0, 0.1);
}

/* Offers = orange / amber */
.featured-strip-offers {
    background: rgba(140, 70, 0, 0.15);
    border-color: rgba(255, 160, 40, 0.22);
}
.featured-strip-offers:hover {
    background: rgba(140, 70, 0, 0.22);
    border-color: rgba(255, 160, 40, 0.45);
    box-shadow: 0 0 35px rgba(255, 160, 40, 0.1);
}

/* Section headers inside glass blocks */
.featured-strip-section .section-header-row {
    margin-bottom: 0.6rem;
    border-left: 3px solid var(--accent-purple);
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-strip-section .section-header-row h3 {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: white;
    margin: 0;
}

.featured-strip-section .view-all-link {
    color: var(--accent-lime);
    font-size: 0.65rem;
}

/* ── Per-container header markers & accent colors ── */
/* Must come AFTER base rule to override border-left shorthand */

/* Events = purple markers */
.featured-strip-events .section-header-row {
    border-left-color: var(--accent-purple);
}
.featured-strip-events .section-header-row h3 {
    color: rgba(200, 160, 255, 1);
}
.featured-strip-events .view-all-link {
    color: rgba(200, 160, 255, 0.85);
}

/* Acts = lime markers */
.featured-strip-acts .section-header-row {
    border-left-color: var(--accent-lime);
}
.featured-strip-acts .section-header-row h3 {
    color: var(--accent-lime);
}

/* Offers = orange markers */
.featured-strip-offers .section-header-row {
    border-left-color: #ffa028;
}
.featured-strip-offers .section-header-row h3 {
    color: #ffa028;
}
.featured-strip-offers .view-all-link {
    color: rgba(255, 180, 80, 0.85);
}

/* ── Offers inner-card orange accent overrides ── */
.featured-strip-offers .membership-perk-card {
    border-color: rgba(255, 160, 40, 0.18);
}
.featured-strip-offers .membership-perk-card:hover {
    border-color: rgba(255, 160, 40, 0.5);
    box-shadow: 0 12px 25px rgba(255, 160, 40, 0.15);
    transform: translateY(-5px);
}
.featured-strip-offers .membership-perk-provider {
    color: #ffa028;
}
.featured-strip-offers .membership-perk-code {
    border-color: rgba(255, 160, 40, 0.2);
}
.featured-strip-offers .membership-perk-code strong {
    color: #ffb347;
}
.featured-strip-offers .hero-code-reveal .code-value {
    color: #ffb347 !important;
}
.featured-strip-offers .offer-logo-placeholder {
    border-color: rgba(255, 160, 40, 0.2) !important;
}


/* Events block fills full left height */
.featured-strip-events {
    display: flex;
    flex-direction: column;
}

/* ---- EVENTS: horizontal scroll ---- */
.events-vertical-list {
    display: flex;
    gap: 10px;
    flex: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}
.events-vertical-list::-webkit-scrollbar {
    height: 4px;
}
.events-vertical-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}
.events-vertical-list::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.4);
    border-radius: 2px;
}

.events-vertical-list .hero-card.event-card-vert {
    min-height: 0 !important;
    height: auto !important;
    min-width: 220px;
    max-width: 240px;
    flex: 0 0 auto;
    flex-direction: column;
    background: rgba(17, 16, 20, 0.75);
    border-radius: 8px;
    border-color: rgba(255,255,255,0.06);
    overflow: hidden;
    display: flex;
    scroll-snap-align: start;
}

.events-vertical-list .hero-card.event-card-vert:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 4px 18px rgba(138, 43, 226, 0.18);
    background: rgba(30, 20, 45, 0.9);
}

.events-vertical-list .event-card-img {
    flex: 0 0 auto;
    min-height: 0 !important;
    height: 110px !important;
    padding-top: 0 !important;
    border-radius: 8px 8px 0 0;
}

.events-vertical-list .event-card-body {
    padding: 8px 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-left: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-start;
    flex: 0 0 auto !important;
    overflow: hidden;
}

.events-vertical-list .event-card-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.2;
    margin: 0 0 5px;
    letter-spacing: 0.5px;
}

.events-vertical-list .event-card-info-pill {
    font-size: 0.55rem;
    padding: 3px 6px;
    border-radius: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.events-vertical-list .event-card-info-pill .pill-icon {
    margin-right: 2px;
}

.events-vertical-list .curator-pill {
    color: var(--accent-lime);
    font-weight: 700;
    text-transform: uppercase;
    border-color: rgba(212, 255, 0, 0.15);
    background: rgba(212, 255, 0, 0.05);
    margin-top: 2px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.events-vertical-list .venue-pill {
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.events-vertical-list .desc-pill {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    border: none;
    background: rgba(255,255,255,0.03);
    font-size: 0.55rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    margin-top: 2px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.events-vertical-list .event-card-view-more {
    padding: 4px 10px;
    text-align: center;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(200, 160, 255, 1);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.18), rgba(100, 60, 180, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: center;
}

.events-vertical-list .event-card-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.15), transparent);
    transition: left 0.5s ease;
}

.events-vertical-list .hero-card.event-card-vert:hover .event-card-view-more::before {
    left: 100%;
}

.events-vertical-list .hero-card.event-card-vert:hover .event-card-view-more {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(100, 60, 180, 0.2));
    border-color: rgba(180, 130, 255, 0.5);
    box-shadow: 0 0 12px rgba(138, 43, 226, 0.2);
    transform: scale(1.02);
}

/* Show lineup tags but constrain height for evenness */
.events-vertical-list .lineup-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 4px;
}

.events-vertical-list .lineup-tag-small {
    font-size: 0.5rem;
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.25);
    color: rgba(200, 160, 255, 0.8);
    white-space: nowrap;
}

.events-vertical-list .event-card-float-tag {
    font-size: 0.5rem;
    padding: 2px 5px;
}

.events-vertical-list .ticket-btn {
    font-size: 0.45rem;
    padding: 2px 5px;
    letter-spacing: 0.3px;
    margin-top: auto;
}
.events-vertical-list .ticket-stub {
    padding: 4px 6px;
    font-size: 0.68rem;
}
.events-vertical-list .ticket-main {
    padding: 5px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}
.events-vertical-list .ticket-stub::before,
.events-vertical-list .ticket-stub::after {
    width: 6px;
    height: 6px;
    right: -4px;
}
.events-vertical-list .ticket-stub::before { top: -3px; }
.events-vertical-list .ticket-stub::after { bottom: -3px; }

.events-vertical-list .ticket-btn::before,
.events-vertical-list .ticket-btn::after {
    background: rgba(17, 16, 20, 0.95);
}

/* Hide genre tags in the event cards to keep them compact */
.events-vertical-list .event-card-tags {
    display: none;
}

/* Compact ripped-ticket (past events) in featured strip */
.events-vertical-list .ripped-ticket-container {
    margin-top: auto;
}
.events-vertical-list .ripped-ticket-main {
    padding: 6px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
}
.events-vertical-list .ripped-ticket-stub {
    width: 28px;
    height: 32px;
}
.events-vertical-list .ripped-ticket-stub::before,
.events-vertical-list .ripped-ticket-stub::after {
    width: 8px;
    height: 8px;
    right: -4px;
}
.events-vertical-list .ripped-ticket-stub::before { top: -4px; right: -5px; }
.events-vertical-list .ripped-ticket-stub::after { bottom: -4px; right: -5px; }
.events-vertical-list .ripped-ticket-main::after {
    width: 6px;
    height: 10px;
    right: -3px;
}

/* Compact ticket-controls & ticket-btn */
.events-vertical-list .ticket-controls {
    margin-top: auto;
}


/* ---- ACTS: 3-col grid (right col, top) ---- */
.acts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.acts-grid .hero-card {
    border-radius: 8px;
    border-color: rgba(212, 255, 0, 0.08);
    background-color: rgba(10, 10, 20, 0.45);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.acts-grid .hero-card:hover {
    border-color: rgba(212, 255, 0, 0.45);
    box-shadow: 0 6px 20px rgba(212, 255, 0, 0.12);
    background-color: rgba(20, 22, 10, 0.9);
}

.acts-grid .hero-card.act-card {
    aspect-ratio: 16/9;
    max-height: none;
    min-height: 120px;
}

.acts-grid .act-card-title {
    font-size: 0.8rem;
}

.acts-grid .act-card-subtitle {
    font-size: 0.6rem;
}

.acts-grid .act-tag {
    font-size: 0.5rem;
    padding: 2px 5px;
    background: rgba(212, 255, 0, 0.25);
    color: var(--accent-lime);
    border: 1px solid rgba(212, 255, 0, 0.3);
}


/* ---- OFFERS: 3-col grid (right col, bottom) ---- */
.featured-strip-section .hero-offers-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0;
    border: none;
    padding: 0;
}

.featured-strip-section .offer-card {
    padding: 10px 12px;
    background: rgba(10, 10, 20, 0.4);
    border-color: rgba(255, 160, 40, 0.08);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.featured-strip-section .offer-card:hover {
    background: rgba(35, 22, 10, 0.9);
    border-color: rgba(255, 160, 40, 0.4);
    box-shadow: 0 4px 16px rgba(255, 160, 40, 0.1);
}

.featured-strip-section .offer-title {
    font-size: 0.8rem;
}

.featured-strip-section .offer-desc {
    font-size: 0.65rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}


/* ---- Tablet: keep 2-col but tighten ---- */
@media (max-width: 1200px) {
    .featured-strip-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .acts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .featured-strip-section .hero-offers-area {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- Mobile: single column, horizontal scrolls ---- */
@media (max-width: 768px) {
    .featured-strip-section {
        padding: 1rem 0.8rem;
    }
    .featured-strip-inner {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .featured-strip-block {
        padding: 0.8rem;
        border-radius: 12px;
        overflow: hidden;
    }

    /* On mobile, right wrapper reverts to normal flow */
    .featured-strip-right {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        min-width: 0;
    }

    /* Events: horizontal scroll on mobile */
    .events-vertical-list {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        max-width: 100%;
    }
    .events-vertical-list .hero-card.event-card-vert {
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
        flex-direction: column;
        scroll-snap-align: start;
    }
    .events-vertical-list .event-card-img {
        height: 100px;
        border-radius: 8px 8px 0 0;
    }
    .events-vertical-list .event-card-body {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding: 6px 8px !important;
    }

    /* --- Mobile card simplification: hide desc, venue, view-more --- */
    .events-vertical-list .desc-pill,
    .events-vertical-list .venue-pill,
    .events-vertical-list .event-card-view-more {
        display: none !important;
    }

    /* Compact ticket button text in featured strip */
    .events-vertical-list .ticket-main {
        font-size: 0.6rem !important;
        padding: 4px 8px !important;
        white-space: nowrap !important;
    }
    .events-vertical-list .ticket-stub {
        padding: 4px 5px !important;
        font-size: 0.6rem !important;
    }
    .events-vertical-list .ripped-ticket-main {
        font-size: 0.55rem !important;
        padding: 5px 8px !important;
        white-space: nowrap !important;
    }
    .events-vertical-list .ripped-ticket-stub {
        width: 22px !important;
        height: 26px !important;
    }

    /* Acts: horizontal scroll on mobile */
    .acts-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        max-width: 100%;
    }
    .acts-grid .hero-card {
        min-width: 150px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* Offers: horizontal scroll on mobile */
    .featured-strip-section .hero-offers-area {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        max-width: 100%;
    }
    .featured-strip-section .hero-offers-area .offer-card {
        min-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* Hide scrollbar */
    .events-vertical-list::-webkit-scrollbar,
    .acts-grid::-webkit-scrollbar,
    .featured-strip-section .hero-offers-area::-webkit-scrollbar {
        display: none;
    }
    .events-vertical-list,
    .acts-grid,
    .featured-strip-section .hero-offers-area {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* ==========================================================
   CAROUSEL + EVENTS GRID — Identical to Featured Strip
   Cards now output the same HTML/classes as featured strip.
   Just extend every .events-vertical-list rule to also apply
   inside .carousel-track and .events-grid.
   ========================================================== */

/* --- EVENTS GRID LAYOUT (override styles.css base) --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 20px;
}

/* --- CARD BASE --- */
.carousel-track .hero-card.event-card-vert,
.events-grid .hero-card.event-card-vert {
    height: 450px;
    min-height: 450px;
    max-height: 450px;
    flex-direction: column;
    background: rgba(17, 16, 20, 0.75);
    border-radius: 8px;
    border-color: rgba(255,255,255,0.06);
    overflow: hidden;
    display: flex;
}

/* --- CARD HOVER --- */
.carousel-track .hero-card.event-card-vert:hover,
.events-grid .hero-card.event-card-vert:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 4px 18px rgba(138, 43, 226, 0.18);
    background: rgba(30, 20, 45, 0.9);
}

/* --- IMAGE --- */
.carousel-track .event-card-img,
.events-grid .hero-card.event-card-vert .event-card-img {
    flex: 0 0 auto;
    min-height: 0;
    height: 110px;
    border-radius: 8px 8px 0 0;
}

/* --- CARD BODY --- */
.carousel-track .event-card-body,
.events-grid .hero-card.event-card-vert .event-card-body {
    padding: 8px 10px !important;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-left: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: space-evenly;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

/* --- TITLE --- */
.carousel-track .event-card-title,
.events-grid .hero-card.event-card-vert .event-card-title {
    font-family: var(--font-head);
    font-size: 1.15rem !important;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.2;
    margin: 0 0 5px;
    letter-spacing: 0.5px;
    color: white;
}

/* --- INFO PILLS --- */
.carousel-track .event-card-info-pill,
.events-grid .event-card-info-pill {
    font-size: 0.55rem;
    padding: 3px 6px;
    border-radius: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.carousel-track .event-card-info-pill .pill-icon,
.events-grid .event-card-info-pill .pill-icon {
    margin-right: 2px;
}

/* --- CURATOR PILL --- */
.carousel-track .curator-pill,
.events-grid .curator-pill {
    color: var(--accent-lime);
    font-weight: 700;
    text-transform: uppercase;
    border-color: rgba(212, 255, 0, 0.15);
    background: rgba(212, 255, 0, 0.05);
    margin-top: 2px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* --- VENUE PILL --- */
.carousel-track .venue-pill,
.events-grid .venue-pill {
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* --- DESC PILL --- */
.carousel-track .desc-pill,
.events-grid .desc-pill {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    border: none;
    background: rgba(255,255,255,0.03);
    font-size: 0.55rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    margin-top: 2px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* --- VIEW MORE BUTTON --- */
.carousel-track .event-card-view-more,
.events-grid .event-card-view-more {
    padding: 4px 10px;
    text-align: center;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(200, 160, 255, 1);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.18), rgba(100, 60, 180, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: center;
}
.carousel-track .event-card-view-more::before,
.events-grid .event-card-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.15), transparent);
    transition: left 0.5s ease;
}
.carousel-track .hero-card.event-card-vert:hover .event-card-view-more::before,
.events-grid .hero-card.event-card-vert:hover .event-card-view-more::before {
    left: 100%;
}
.carousel-track .hero-card.event-card-vert:hover .event-card-view-more,
.events-grid .hero-card.event-card-vert:hover .event-card-view-more {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(100, 60, 180, 0.2));
    border-color: rgba(180, 130, 255, 0.5);
    box-shadow: 0 0 12px rgba(138, 43, 226, 0.2);
    transform: scale(1.02);
}

/* --- LINEUP TAGS --- */
.carousel-track .lineup-tags-container,
.events-grid .lineup-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 4px;
}
.carousel-track .lineup-tag-small,
.events-grid .lineup-tag-small {
    font-size: 0.5rem;
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.25);
    color: rgba(200, 160, 255, 0.8);
    white-space: nowrap;
    transition: all 0.2s;
}
.carousel-track .lineup-tag-small:hover,
.events-grid .lineup-tag-small:hover {
    background: rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
    color: rgba(220, 180, 255, 1);
}

/* --- FLOAT TAG --- */
.carousel-track .event-card-float-tag,
.events-grid .event-card-float-tag {
    font-size: 0.5rem;
    padding: 2px 5px;
}

/* --- DATE BADGE --- */
.carousel-track .date-badge-small,
.events-grid .date-badge-small {
    border-bottom-color: var(--accent-lime);
    background: rgba(0, 0, 0, 0.8);
    font-family: var(--font-head);
    font-size: 0.6rem;
    padding: 4px 8px;
    letter-spacing: 0.5px;
    font-weight: 800;
}

/* --- TICKET BUTTON --- */
.carousel-track .ticket-btn,
.events-grid .ticket-btn {
    font-size: 0.45rem;
    padding: 2px 5px;
    letter-spacing: 0.3px;
    margin-top: auto;
}
.carousel-track .ticket-stub,
.events-grid .ticket-stub {
    padding: 4px 6px;
    font-size: 0.68rem;
}
.carousel-track .ticket-main,
.events-grid .ticket-main {
    padding: 5px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}
.carousel-track .ticket-stub::before,
.carousel-track .ticket-stub::after,
.events-grid .ticket-stub::before,
.events-grid .ticket-stub::after {
    width: 6px;
    height: 6px;
}

/* --- RIPPED TICKET --- */
.carousel-track .ripped-ticket-container,
.events-grid .ripped-ticket-container {
    margin-top: auto;
}
.carousel-track .ripped-ticket-main,
.events-grid .ripped-ticket-main {
    padding: 6px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
}
.carousel-track .ripped-ticket-stub,
.events-grid .ripped-ticket-stub {
    width: 28px;
    height: 32px;
}
.carousel-track .ripped-ticket-stub::before,
.carousel-track .ripped-ticket-stub::after,
.events-grid .ripped-ticket-stub::before,
.events-grid .ripped-ticket-stub::after {
    width: 8px;
    height: 8px;
    right: -4px;
}
.carousel-track .ripped-ticket-stub::before,
.events-grid .ripped-ticket-stub::before { top: -4px; right: -5px; }
.carousel-track .ripped-ticket-stub::after,
.events-grid .ripped-ticket-stub::after { bottom: -4px; right: -5px; }
.carousel-track .ripped-ticket-main::after,
.events-grid .ripped-ticket-main::after {
    width: 6px;
    height: 10px;
    right: -3px;
}

/* --- TICKET CONTROLS --- */
.carousel-track .ticket-controls,
.events-grid .ticket-controls {
    margin-top: auto;
}

/* --- QTY CONTROLS: compact --- */
.carousel-track .qty-controls,
.events-grid .qty-controls {
    transform: scale(0.65);
    transform-origin: center;
    margin: -4px 0;
}

/* --- VIEW ALL BUTTON --- */
.carousel-section .btn-secondary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.18), rgba(100, 60, 180, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: rgba(200, 160, 255, 1);
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.carousel-section .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(100, 60, 180, 0.2));
    border-color: rgba(180, 130, 255, 0.5);
    box-shadow: 0 0 16px rgba(138, 43, 226, 0.25);
    transform: scale(1.03);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .carousel-track .hero-card.event-card-vert {
        width: 200px !important;
        height: auto !important;
        min-height: 280px;
        max-height: 380px;
        margin: 0 6px !important;
    }
    .events-grid .hero-card.event-card-vert {
        height: auto !important;
        min-height: 280px;
        max-height: none;
    }
    .carousel-track .event-card-body,
    .events-grid .hero-card.event-card-vert .event-card-body {
        padding: 6px 8px !important;
    }
    .carousel-track .event-card-title,
    .events-grid .hero-card.event-card-vert .event-card-title {
        font-size: 0.9rem !important;
    }

    /* Simplify cards on mobile: hide desc, venue, view-more */
    .carousel-track .desc-pill,
    .carousel-track .venue-pill,
    .carousel-track .event-card-view-more {
        display: none !important;
    }
    .events-grid .desc-pill {
        -webkit-line-clamp: 2;
    }

    /* Ticket button: force single line */
    .carousel-track .ticket-main,
    .events-grid .ticket-main {
        white-space: nowrap !important;
        font-size: 0.6rem !important;
        padding: 4px 8px !important;
        letter-spacing: 0.3px !important;
    }
    .carousel-track .ticket-stub,
    .events-grid .ticket-stub {
        padding: 4px 5px !important;
        font-size: 0.6rem !important;
    }
    .carousel-track .ripped-ticket-main,
    .events-grid .ripped-ticket-main {
        font-size: 0.55rem !important;
        padding: 5px 8px !important;
        white-space: nowrap !important;
    }
    .carousel-track .ripped-ticket-stub,
    .events-grid .ripped-ticket-stub {
        width: 22px !important;
        height: 26px !important;
    }

    .events-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-track .hero-card.event-card-vert {
        width: 180px !important;
        min-height: 260px;
    }
    .events-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .events-grid .hero-card.event-card-vert {
        max-height: none;
    }
    /* Also hide venue on events page for very small screens */
    .events-grid .venue-pill {
        display: none !important;
    }
}
