/* Crazy Heads — Purple theme + all sections */
:root {
    --purple-light: #e879f9;
    --purple-main: #a855f7;
    --purple-vivid: #c026d3;
    --purple-dark: #7e22ce;
    --bg-dark: #05000a;
    --accent-main: #a855f7;
    --body-font: 'Space Grotesk', 'Montserrat', sans-serif;
}

body, html {
    background-color: var(--bg-dark);
    font-family: var(--body-font);
}

/* ── Hero Load Animations ───────────────────────────────────── */
@keyframes navSlideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
@keyframes bgFadeIn {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1);    }
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes heroTitleReveal {
    from { opacity: 0; transform: translateY(22px) scale(0.94); filter: blur(8px); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0);   }
}
@keyframes lineGrow {
    from { height: 0;    opacity: 0; }
    to   { height: 60px; opacity: 1; }
}

nav  { animation: navSlideIn 0.9s cubic-bezier(0.16,1,0.3,1) both; }
.hero-bg { animation: bgFadeIn 2s ease both; }

.hero-content .sub-1   { opacity:0; animation: heroFadeUp 0.9s ease forwards 0.5s; }
.hero-content .hero-title { opacity:0; animation: heroTitleReveal 1.1s cubic-bezier(0.16,1,0.3,1) forwards 0.8s; }
.hero-content .sub-2   { opacity:0; animation: heroFadeUp 0.9s ease forwards 1.1s; }
.hero-content .desc    { opacity:0; animation: heroFadeUp 0.9s ease forwards 1.3s; }
.hero-content .cta-btn { opacity:0; animation: heroFadeUp 0.9s ease forwards 1.5s; }
.bottom-line { height:0; animation: lineGrow 0.9s ease forwards 1.8s; }

/* ── Scroll Reveal ──────────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
                transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal="left"]  { transform: translateX(-52px); }
[data-reveal="right"] { transform: translateX(52px); }
[data-reveal].visible { opacity:1; transform: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=2067&auto=format&fit=crop');
}
.hero-overlay {
    background: radial-gradient(ellipse at center, rgba(5,0,10,0.78) 0%, rgba(5,0,10,0.96) 100%);
}
nav.scrolled { background: rgba(10,0,20,0.45); }

.logo {
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.6rem !important;
}

.logo-img-ch {
    width: 100px;
    height: 85px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.logo-text-ch {
    background: linear-gradient(to right, #c026d3, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.25em;
}
.avora-link {
    color: #d4af37 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    font-weight: 600 !important;
}
.avora-link:hover { color: #f5d78d !important; }
.avora-link .tilt-arrow {
    display: inline-block;
    font-size: 1.05em;
    transition: transform 0.3s ease;
}
.avora-link:hover .tilt-arrow { transform: translate(3px, -3px); }

.hero-title {
    background: linear-gradient(to right, #e040fb, #c084fc, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 32px rgba(192,132,252,0.45));
}
.hero-content .sub-2 {
    color: #eedeff;
    text-shadow: 0 0 28px rgba(168,85,247,0.35);
}
.hero-content .desc {
    color: #c4b8d8;
}
.cta-btn:hover {
    background: rgba(168,85,247,0.08);
    box-shadow: 0 0 24px rgba(168,85,247,0.25);
}
.bottom-line {
    background: linear-gradient(to top, rgba(168,85,247,0), rgba(168,85,247,0.6));
}

/* Section colours */
.section-title {
    background: linear-gradient(to right, #c026d3, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-line { background: rgba(168,85,247,0.4); }

/* ── About Section ──────────────────────────────────────────── */
.about-section {
    padding: 9rem 5%;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10;
    text-align: center;
}
.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.2), transparent);
}
.about-body {
    max-width: 780px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-lead {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: #d8b4fe;
    line-height: 1.75;
    font-weight: 400;
}
.about-sub {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(168,85,247,0.12);
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-number {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    background: linear-gradient(to right, #c026d3, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #555;
    font-weight: 400;
}
@media (max-width: 768px) {
    .stats-row { grid-template-columns: repeat(2,1fr); gap: 2.5rem 1.5rem; }
}

/* ── Tickets Section ────────────────────────────────────────── */
.tickets-section {
    padding: 8rem 5%;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10;
}
.tickets-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.25), transparent);
}

/* Filter chips */
.ticket-chips {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}
.ticket-chip {
    padding: 0.55rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(168,85,247,0.22);
    background: transparent;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ticket-chip:hover {
    border-color: rgba(168,85,247,0.5);
    color: #a0a0a0;
}
.ticket-chip.active {
    border-color: var(--purple-main);
    background: rgba(168,85,247,0.12);
    color: #d8b4fe;
}

/* Grid */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Card — physical ticket shape */
.ticket-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(168,85,247,0.12);
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s ease;
    animation: ticketAppear 0.45s cubic-bezier(0.16,1,0.3,1) both;
    position: relative;
}
.ticket-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168,85,247,0.35);
}
.present-card {
    border-color: rgba(168,85,247,0.45);
    background: linear-gradient(145deg, rgba(168,85,247,0.07) 0%, rgba(99,102,241,0.03) 100%);
    box-shadow: 0 0 32px rgba(168,85,247,0.07);
}

@keyframes ticketAppear {
    from { opacity:0; transform: translateY(22px); }
    to   { opacity:1; transform: translateY(0); }
}

/* Main content area */
.ticket-main {
    flex: 1;
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-width: 0;
}

/* Tear-off stub */
.ticket-stub {
    width: 72px;
    flex-shrink: 0;
    border-left: 2px dashed rgba(168,85,247,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0;
    position: relative;
    background: rgba(168,85,247,0.025);
}

/* Semicircle notches at dashed border */
.ticket-stub::before,
.ticket-stub::after {
    content: '';
    position: absolute;
    left: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-dark);
    z-index: 2;
}
.ticket-stub::before { top: -11px; }
.ticket-stub::after  { bottom: -11px; }

/* Vertical brand text */
.stub-brand {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(168,85,247,0.4);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

/* Barcode stripes */
.stub-barcode {
    width: 26px;
    flex: 1;
    margin: 0.9rem 0;
    max-height: 90px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(168,85,247,0.55) 0px,
        rgba(168,85,247,0.55) 2px,
        transparent 2px,
        transparent 4px,
        rgba(168,85,247,0.3) 4px,
        rgba(168,85,247,0.3) 5px,
        transparent 5px,
        transparent 8px
    );
    border-radius: 2px;
}

/* Ticket serial number */
.stub-num {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
    color: rgba(168,85,247,0.28);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.ticket-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Status tags */
.ticket-status-tag {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.past-tag     { background: rgba(255,255,255,0.04); color: #444; }
.present-tag  { background: rgba(168,85,247,0.15);  color: #c084fc; }
.upcoming-tag { background: rgba(99,102,241,0.12);  color: #818cf8; }

/* Pulse dot for live indicator */
.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c084fc;
    flex-shrink: 0;
    animation: pulseAnim 1.4s ease infinite;
}
@keyframes pulseAnim {
    0%,100% { opacity:1; transform: scale(1); }
    50%      { opacity:0.35; transform: scale(0.65); }
}

.ticket-date {
    font-size: 0.7rem;
    color: #484848;
    letter-spacing: 0.08em;
}

.ticket-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    color: #ddd0ff;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.1;
}
.ticket-subname {
    font-size: 0.72rem;
    color: #484848;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: -0.3rem;
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    flex: 1;
}
.ticket-info span {
    font-size: 0.76rem;
    color: #484848;
    font-weight: 300;
    letter-spacing: 0.03em;
}
.present-card .ticket-info span { color: #5a5a5a; }

/* Footer row inside card */
.ticket-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(168,85,247,0.1);
    margin-top: auto;
}
.ticket-price {
    font-family: 'Cinzel', serif;
    font-size: 0.92rem;
    font-weight: 600;
    background: linear-gradient(to right, #c084fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ticket-sold-out {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: #3a3a3a;
    text-transform: uppercase;
    font-weight: 500;
}

/* Ticket buttons */
.ticket-btn {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.48rem 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}
.past-btn     { border: 1px solid rgba(255,255,255,0.08); color: #484848; }
.past-btn:hover { border-color: rgba(255,255,255,0.18); color: #777; }
.present-btn  { background: rgba(168,85,247,0.18); border: 1px solid rgba(168,85,247,0.5); color: #c084fc; }
.present-btn:hover { background: rgba(168,85,247,0.28); box-shadow: 0 0 18px rgba(168,85,247,0.3); }
.upcoming-btn { border: 1px solid rgba(99,102,241,0.32); color: #818cf8; }
.upcoming-btn:hover { background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.55); }

@media (max-width: 768px)  { .tickets-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px)  {
    .ticket-stub { width: 56px; }
    .stub-barcode { max-height: 60px; }
}

/* ── Booking Modal ──────────────────────────────────────────── */
.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,0,10,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.booking-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.booking-modal {
    background: #0c0115;
    border: 1px solid rgba(168,85,247,0.22);
    border-radius: 20px;
    padding: 2.5rem 2.2rem;
    width: 100%;
    max-width: 520px;
    position: relative;
    transform: translateY(28px);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    max-height: 90vh;
    overflow-y: auto;
}
.booking-overlay.open .booking-modal {
    transform: translateY(0);
}

.booking-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: none;
    border: none;
    color: #555;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    line-height: 1;
}
.booking-close:hover { color: #c084fc; background: rgba(168,85,247,0.08); }

.booking-header { margin-bottom: 1.8rem; }
.booking-event-label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #a855f7;
    margin-bottom: 0.45rem;
}
.booking-title {
    font-family: 'Cinzel', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #eedeff;
    letter-spacing: 0.04em;
}

/* Ticket type cards */
.ticket-type-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 1.6rem;
}
.ticket-type-card {
    border: 1px solid rgba(168,85,247,0.18);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.ticket-type-card:hover {
    border-color: rgba(168,85,247,0.4);
    background: rgba(168,85,247,0.04);
}
.ticket-type-card.active {
    border-color: #a855f7;
    background: rgba(168,85,247,0.1);
}
.type-badge {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: #888;
}
.ticket-type-card.active .type-badge { color: #c084fc; }
.type-price {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(to right, #c084fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.type-desc {
    font-size: 0.65rem;
    color: #444;
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* Quantity row */
.booking-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    background: rgba(168,85,247,0.04);
    border: 1px solid rgba(168,85,247,0.12);
    border-radius: 12px;
    margin-bottom: 1.4rem;
}
.qty-label {
    font-size: 0.78rem;
    color: #888;
    letter-spacing: 0.06em;
}
.qty-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(168,85,247,0.35);
    background: transparent;
    color: #c084fc;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    line-height: 1;
    padding: 0;
}
.qty-btn:hover { background: rgba(168,85,247,0.14); border-color: #a855f7; }
.qty-btn:disabled { opacity: 0.25; cursor: default; }
.qty-value {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #eedeff;
    min-width: 1.5rem;
    text-align: center;
}

/* Input fields */
.booking-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}
.booking-input {
    width: 100%;
    background: rgba(168,85,247,0.04);
    border: 1px solid rgba(168,85,247,0.14);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    color: #ddd0ff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.booking-input::placeholder { color: #444; }
.booking-input:focus {
    border-color: rgba(168,85,247,0.5);
    background: rgba(168,85,247,0.07);
}

/* Footer row */
.booking-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(168,85,247,0.1);
    gap: 1rem;
}
.booking-total {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}
.total-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
}
.total-amount {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(to right, #e040fb, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.booking-submit {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border: none;
    border-radius: 50px;
    padding: 0.85rem 1.8rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}
.booking-submit:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(168,85,247,0.4);
}

@media (max-width: 520px) {
    .booking-modal { padding: 2rem 1.4rem; }
    .booking-footer-row { flex-direction: column; align-items: stretch; }
    .booking-submit { text-align: center; }
}

/* ── Video Background Section ───────────────────────────────── */
.video-bg-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-bg-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 0, 10, 0.6);
    z-index: 1;
}

.video-bg-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 800px;
}

.video-section-desc {
    color: #c8b8e8;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.ch-video-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(to right, #c026d3, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ch-video-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(to right, #e040fb, #c084fc, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .video-bg-section { height: 70vh; }
    .video-section-desc { font-size: 0.88rem; }
}

/* ── Footer Image Section ────────────────────────────────────── */
.footer-img-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 10;
    line-height: 0;
    max-height: 600px;
}

.footer-section-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ── Events Portfolio Slider ────────────────────────────────── */
.ch-portfolio-section {
    padding: 8rem 5%;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.ch-portfolio-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.25), transparent);
}

.ch-portfolio-slider-wrap {
    margin-top: 1rem;
}

.ch-portfolio-viewport {
    overflow: hidden;
    border-radius: 16px;
}

.ch-portfolio-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: chMarquee 28s linear infinite;
    will-change: transform;
}

.ch-portfolio-viewport:hover .ch-portfolio-track {
    animation-play-state: paused;
}

.ch-marquee-set {
    display: flex;
    gap: 1.25rem;
    padding-right: 1.25rem;
    flex-shrink: 0;
}

@keyframes chMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ch-portfolio-slide {
    flex-shrink: 0;
    width: calc(30vw - 0.9rem);
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(168,85,247,0.15);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.ch-portfolio-slide:hover {
    border-color: rgba(168,85,247,0.5);
    transform: translateY(-6px);
}

.ch-portfolio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ch-portfolio-slide:hover img {
    transform: scale(1.06);
}

.ch-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.2rem 1rem;
    background: linear-gradient(to top, rgba(5,0,10,0.85) 0%, transparent 100%);
    z-index: 1;
}

.ch-slide-label {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c084fc;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .ch-portfolio-slide { width: calc(45vw - 0.7rem); }
}

@media (max-width: 640px) {
    .ch-portfolio-slide { width: 80vw; }
    .ch-portfolio-section { padding: 5rem 5%; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background-color: #030008;
    background-image:
        linear-gradient(rgba(3,0,8,0.88), rgba(3,0,8,0.88)),
        url('../images/footer2.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 10;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.35), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 5rem;
    padding: 6rem 5% 4.5rem;
}
.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 0.22em;
    margin-bottom: 1.4rem;
    background: linear-gradient(to right, #c026d3, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-tagline {
    color: #cccccc;
    font-size: 0.84rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 0.6rem;
}
.footer-brand-desc {
    color: #aaaaaa;
    font-size: 0.76rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.8rem; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(168,85,247,0.18);
    display: flex; align-items: center; justify-content: center;
    color: #aaaaaa;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.social-link:hover {
    border-color: var(--purple-main);
    color: #c084fc;
    background: rgba(168,85,247,0.07);
    transform: translateY(-2px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--purple-main);
    margin-bottom: 1.6rem;
    font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 0.82rem;
    font-weight: 300;
    transition: color 0.3s ease, padding-left 0.3s ease;
    letter-spacing: 0.04em;
    display: inline-block;
}
.footer-col ul li a:hover { color: #c084fc; padding-left: 4px; }

.footer-contact-list { gap: 1rem !important; }
.footer-contact-list li {
    display: flex !important;
    align-items: flex-start;
    gap: 0.7rem;
    color: #cccccc;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.55;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--purple-main); opacity: 0.7; }

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.1), transparent);
    margin: 0 5%;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 5%;
}
.footer-copyright { color: #bbbbbb; font-size: 0.72rem; letter-spacing: 0.06em; }
.footer-bottom-links { display: flex; align-items: center; gap: 0.8rem; }
.footer-bottom-links a { color: #bbbbbb; text-decoration: none; font-size: 0.72rem; letter-spacing: 0.06em; transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: #c084fc; }
.footer-bottom-links span { color: #666666; }

@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 240px 1fr; gap: 3rem; }
    .footer-nav { grid-template-columns: repeat(2,1fr); gap: 2.5rem 2rem; }
}
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; padding: 4rem 5% 3rem; gap: 3rem; }
    .footer-nav { grid-template-columns: repeat(2,1fr); }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 5%; }
}
@media (max-width: 480px) { .footer-nav { grid-template-columns: 1fr; } }

/* ── Mobile & Tablet Responsive ────────────────────────────── */
@media (max-width: 900px) {
    .about-section,
    .tickets-section { padding: 6rem 5%; }
}

@media (max-width: 768px) {
    .tickets-grid { grid-template-columns: 1fr; }

    .footer-top { gap: 2.5rem; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }

    .booking-modal { padding: 2rem 1.6rem; }
    .ticket-type-row { gap: 0.7rem; }
}

@media (max-width: 600px) {
    .about-section,
    .tickets-section { padding: 4.5rem 5%; }

    .section-header { margin-bottom: 2.2rem; }
    .about-body { margin-top: 1.8rem; gap: 1.2rem; }
    .about-lead { font-size: 1rem; }
    .about-sub  { font-size: 0.85rem; }
    .stats-row  { margin-top: 3rem; padding-top: 2.5rem; gap: 2rem 1rem; }

    .ticket-chips { gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
    .ticket-chip  { padding: 0.45rem 1.3rem; font-size: 0.65rem; }

    .ticket-stub  { width: 56px; }
    .stub-barcode { max-height: 64px; width: 20px; }
    .stub-brand, .stub-num { font-size: 0.42rem; }

    .booking-modal { padding: 1.8rem 1.2rem; border-radius: 16px; }
    .booking-title { font-size: 1.2rem; }
    .ticket-type-row { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
    .type-price { font-size: 0.9rem; }
    .type-desc { display: none; }

    .footer-top { padding: 3.5rem 5% 2.5rem; }
    .footer-bottom { padding: 1.4rem 5%; }
}

/* ── Nav Dropdown — Be Part of It ──────────────────────────── */
.nav-dropdown-item {
    position: relative;
}
.nav-dropdown-btn {
    background: none;
    border: none;
    color: #b0b0b0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.nav-dropdown-btn:hover,
.nav-dropdown-item.open .nav-dropdown-btn { color: var(--purple-main); }
.nav-chevron {
    font-size: 0.7em;
    display: inline-block;
    transition: transform 0.25s ease;
    line-height: 1;
}
.nav-dropdown-item.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    list-style: none;
    background: rgba(10,1,18,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(168,85,247,0.22);
    border-radius: 14px;
    padding: 0.45rem;
    min-width: 210px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 200;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.nav-dropdown-item.open .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.nd-opt {
    width: 100%;
    background: none;
    border: none;
    color: #777;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    padding: 0.72rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
    display: block;
}
.nd-opt:hover {
    color: #c084fc;
    background: rgba(168,85,247,0.09);
}

/* Mobile: inline expand inside slide-in nav */
@media (max-width: 900px) {
    .nav-dropdown-item { width: 100%; }
    .nav-dropdown-btn {
        width: 100%;
        padding: 1.1rem 0;
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        color: #888;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .nav-dropdown-btn:hover { padding-left: 6px; }
    .nav-dropdown {
        position: static;
        opacity: 1;
        pointer-events: all;
        transform: none;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0 0 0 1rem;
        box-shadow: none;
        display: none;
    }
    .nav-dropdown-item.open .nav-dropdown { display: block; }
    .nd-opt {
        color: #555;
        padding: 0.8rem 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        font-size: 0.78rem;
    }
    .nd-opt:hover { padding-left: 6px; background: transparent; }
}

/* ── Booking Modal — updated layout ────────────────────────── */
/* Referral field with inline link */
.referral-field-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.referral-get-link {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: #a855f7;
    text-decoration: none;
    align-self: flex-end;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s ease;
}
.referral-get-link:hover { color: #c084fc; }

/* Full-width submit button for booking modal */
.booking-submit {
    width: 100%;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 1.8rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.4rem;
    transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.booking-submit:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(168,85,247,0.4);
}

/* ── Join the Movement Section ──────────────────────────────── */
.join-section {
    padding: 8rem 5%;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10;
}
.join-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.25), transparent);
}

.join-cards-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.join-card {
    background: linear-gradient(145deg, rgba(168,85,247,0.05) 0%, rgba(99,102,241,0.02) 100%);
    border: 1px solid rgba(168,85,247,0.18);
    border-radius: 20px;
    padding: 2.6rem 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.join-card:hover {
    border-color: rgba(168,85,247,0.42);
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(168,85,247,0.1);
}
.join-card-alt {
    background: linear-gradient(145deg, rgba(99,102,241,0.05) 0%, rgba(168,85,247,0.02) 100%);
    border-color: rgba(99,102,241,0.2);
}
.join-card-alt:hover {
    border-color: rgba(99,102,241,0.45);
    box-shadow: 0 12px 48px rgba(99,102,241,0.1);
}

.join-card-tag {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: #a855f7;
    font-family: 'Montserrat', sans-serif;
}
.join-card-alt .join-card-tag { color: #818cf8; }

.join-card-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: #ddd0ff;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.join-card-body {
    font-size: 0.84rem;
    color: #555;
    line-height: 1.8;
    font-weight: 300;
    flex: 1;
}

.join-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
}
.join-card-list li {
    font-size: 0.78rem;
    color: #484848;
    font-weight: 300;
    padding-left: 1.1rem;
    position: relative;
}
.join-card-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(168,85,247,0.45);
    font-size: 0.7rem;
}
.join-card-alt .join-card-list li::before { color: rgba(99,102,241,0.45); }

.join-card-btn {
    align-self: flex-start;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(168,85,247,0.45);
    background: rgba(168,85,247,0.1);
    color: #c084fc;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.join-card-btn:hover {
    background: rgba(168,85,247,0.2);
    border-color: #a855f7;
    box-shadow: 0 0 18px rgba(168,85,247,0.3);
    transform: translateY(-1px);
}
.join-card-alt .join-card-btn {
    border-color: rgba(99,102,241,0.4);
    background: rgba(99,102,241,0.1);
    color: #818cf8;
}
.join-card-alt .join-card-btn:hover {
    background: rgba(99,102,241,0.2);
    border-color: #818cf8;
    box-shadow: 0 0 18px rgba(99,102,241,0.3);
}

@media (max-width: 768px) {
    .join-cards-wrap { grid-template-columns: 1fr; }
    .join-section { padding: 6rem 5%; }
}
@media (max-width: 600px) {
    .join-section { padding: 4.5rem 5%; }
    .join-card { padding: 2rem 1.6rem; }
}

/* ── Shared CH Form Modals (Partner + Ambassador) ───────────── */
.ch-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,0,10,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.ch-form-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.ch-form-modal {
    background: #0c0115;
    border: 1px solid rgba(168,85,247,0.22);
    border-radius: 20px;
    padding: 2.5rem 2.4rem;
    width: 100%;
    max-width: 560px;
    position: relative;
    transform: translateY(28px);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(168,85,247,0.25) transparent;
}
.ch-form-modal::-webkit-scrollbar { width: 4px; }
.ch-form-modal::-webkit-scrollbar-track { background: transparent; }
.ch-form-modal::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.25); border-radius: 2px; }
.ch-form-overlay.open .ch-form-modal {
    transform: translateY(0);
}

.ch-form-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: none;
    border: none;
    color: #555;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    line-height: 1;
}
.ch-form-close:hover { color: #c084fc; background: rgba(168,85,247,0.08); }

.ch-form-header { margin-bottom: 1.8rem; }
.ch-form-label {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #a855f7;
    margin-bottom: 0.45rem;
}
.ch-form-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #eedeff;
    letter-spacing: 0.04em;
}

.ch-form-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.ch-form-input {
    width: 100%;
    background: rgba(168,85,247,0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    color: #ddd0ff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
    resize: none;
}
.ch-form-input::placeholder { color: #ffffff; }
.ch-form-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(168,85,247,0.07);
}

.ch-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.7;
}

/* Two-column layout inside ambassador form */
.ch-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}
@media (max-width: 500px) {
    .ch-two-col { grid-template-columns: 1fr; }
}

/* Radio group */
.ch-radio-group {
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(168,85,247,0.12);
    border-radius: 12px;
    background: rgba(168,85,247,0.03);
}
.ch-radio-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 0.9rem;
}
.ch-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.ch-radio-opt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
}
.ch-radio-opt:hover { color: #c084fc; }
.ch-radio-opt input[type="radio"] { display: none; }
.ch-radio-custom {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(168,85,247,0.3);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
}
.ch-radio-opt input[type="radio"]:checked ~ .ch-radio-custom {
    border-color: #a855f7;
    background: rgba(168,85,247,0.12);
}
.ch-radio-opt input[type="radio"]:checked ~ .ch-radio-custom::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #a855f7;
}
.ch-radio-opt:has(input[type="radio"]:checked) { color: #c084fc; }

.ch-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 1.8rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.ch-form-submit:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(168,85,247,0.4);
}

@media (max-width: 600px) {
    .ch-form-modal { padding: 2rem 1.4rem; }
    .ch-form-title { font-size: 1.25rem; }
    .ticket-type-row { grid-template-columns: 1fr; }
}

/* ── Referral Code Reveal Modal ─────────────────────────────── */
.referral-reveal-modal {
    max-width: 420px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2.4rem 2.4rem;
}
.rr-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084fc;
    margin-bottom: 0.5rem;
}
.rr-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #a855f7;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}
.rr-title {
    font-family: 'Cinzel', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #eedeff;
    letter-spacing: 0.04em;
    margin-top: -0.25rem;
}
.rr-sub {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
    max-width: 300px;
}
.rr-code-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(168,85,247,0.07);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    width: 100%;
    margin: 0.5rem 0;
    justify-content: space-between;
}
.rr-code {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #c084fc;
    background: linear-gradient(to right, #e040fb, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rr-copy-btn {
    background: rgba(168,85,247,0.15);
    border: 1px solid rgba(168,85,247,0.35);
    border-radius: 8px;
    color: #c084fc;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}
.rr-copy-btn:hover { background: rgba(168,85,247,0.25); border-color: #a855f7; }
.rr-copy-btn.copied { color: #4ade80; border-color: rgba(74,222,128,0.4); background: rgba(74,222,128,0.1); }

/* ── Dynamic events loading state ───────────────────────────── */
.tickets-grid { min-height: 120px; }

.tickets-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 4rem 0;
    color: #444;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
}
.tl-ring {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(168,85,247,0.12);
    border-top-color: rgba(168,85,247,0.5);
    border-radius: 50%;
    animation: tlSpin 0.75s linear infinite;
}
@keyframes tlSpin { to { transform: rotate(360deg); } }

/* ── Improved readability: font sizes & contrast ─────────────── */
.about-lead {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem) !important;
    color: #d8c8f0 !important;
    line-height: 1.8 !important;
}

.about-sub {
    font-size: 1rem !important;
    color: #9980c0 !important;
    line-height: 1.85 !important;
}

.ticket-name {
    font-size: clamp(1.35rem, 2.8vw, 1.75rem) !important;
    color: #eedeff !important;
}

.ticket-info span {
    font-size: 0.84rem !important;
    color: #6a6a7a !important;
}

.section-desc {
    font-size: 1.05rem !important;
    color: #9980c0 !important;
}

.join-card-body {
    font-size: 0.92rem !important;
    color: #7070a0 !important;
    line-height: 1.85 !important;
}

.join-card-list li {
    font-size: 0.85rem !important;
    color: #6868a0 !important;
}

.join-card-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
}

/* ── Hero 3-Button Layout ───────────────────────────────────── */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    cursor: pointer;
    border: 2px solid;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Smaller buttons (Get Tickets & Partner) */
.hero-action-sm {
    font-size: 0.78rem;
    padding: 0.85rem 1.8rem;
    border-color: rgba(168,85,247,0.55);
    color: #c084fc;
    background: rgba(168,85,247,0.08);
    letter-spacing: 0.1em;
}
.hero-action-sm:hover {
    border-color: #a855f7;
    background: rgba(168,85,247,0.18);
    box-shadow: 0 6px 24px rgba(168,85,247,0.3);
    transform: translateY(-2px);
    color: #e879f9;
}

/* Larger main button (Explore Events) */
.hero-action-main {
    font-size: 1rem;
    padding: 1.1rem 3rem;
    border-color: #c026d3;
    color: #fff;
    background: linear-gradient(135deg, rgba(192,36,211,0.5), rgba(168,85,247,0.4));
    box-shadow: 0 0 30px rgba(192,36,211,0.2);
}
.hero-action-main:hover {
    background: linear-gradient(135deg, rgba(192,36,211,0.7), rgba(168,85,247,0.6));
    box-shadow: 0 8px 36px rgba(192,36,211,0.45);
    transform: translateY(-3px);
    border-color: #e040fb;
}

@media (max-width: 600px) {
    .hero-actions { gap: 0.75rem; }
    .hero-action-sm { font-size: 0.7rem; padding: 0.75rem 1.3rem; }
    .hero-action-main { font-size: 0.88rem; padding: 0.95rem 2rem; }
}

/* ── Register Yourself Button ───────────────────────────────── */
.register-btn {
    background: linear-gradient(135deg, rgba(192,36,211,0.25), rgba(168,85,247,0.2)) !important;
    border: 1px solid rgba(192,36,211,0.6) !important;
    color: #e879f9 !important;
    font-size: 0.72rem !important;
    padding: 0.6rem 1.3rem !important;
    letter-spacing: 0.1em !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}
.register-btn:hover {
    background: linear-gradient(135deg, rgba(192,36,211,0.45), rgba(168,85,247,0.35)) !important;
    box-shadow: 0 0 20px rgba(192,36,211,0.4) !important;
    transform: translateY(-1px) !important;
}

/* ── Payment Section inside Booking Modal ────────────────────── */
.payment-section {
    border-top: 1px solid rgba(168,85,247,0.15);
    padding-top: 1.4rem;
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #a855f7;
    font-weight: 600;
}

.payment-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.65;
    font-weight: 300;
}

.payment-methods-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.2rem;
    align-items: start;
}

/* QR code area */
.payment-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168,85,247,0.05);
    border: 1px solid rgba(168,85,247,0.18);
    border-radius: 12px;
    padding: 1rem 0.75rem;
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,0,18,0.6);
    border-radius: 8px;
    border: 1px solid rgba(168,85,247,0.25);
}

.qr-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

.qr-id {
    font-size: 0.72rem;
    color: #a855f7;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
}

/* Bank details */
.bank-details-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem 1.1rem;
    background: rgba(168,85,247,0.04);
    border: 1px solid rgba(168,85,247,0.14);
    border-radius: 12px;
}

.bank-detail-title {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.25rem;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: baseline;
}

.bdr-label {
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 0.06em;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.bdr-val {
    font-size: 0.72rem;
    color: #c084fc;
    font-weight: 600;
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    text-align: right;
}

/* Screenshot upload */
.screenshot-upload-wrap {
    background: rgba(168,85,247,0.04);
    border: 1px dashed rgba(168,85,247,0.3);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.screenshot-upload-wrap:hover {
    border-color: rgba(168,85,247,0.55);
    background: rgba(168,85,247,0.07);
}

.screenshot-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a855f7;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.screenshot-input {
    display: none;
}

.screenshot-filename {
    font-size: 0.68rem;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

@media (max-width: 500px) {
    .payment-methods-row { grid-template-columns: 1fr; }
}

/* ── Corporate Pool Party Section ───────────────────────────── */
.corp-pool-section {
    position: relative;
    padding: 8rem 5%;
    background: url('../images/corp_back.jpeg') center center / cover no-repeat;
    overflow: hidden;
    z-index: 10;
}
.corp-pool-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 0, 8, 0.78);
    pointer-events: none;
}
.corp-pool-section::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.25), transparent);
}

.corp-pool-bg-overlay { display: none; }

.corp-pool-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
}

/* Brand bar */
.corp-brand-bar {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}
.corp-brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}
.corp-brand-logo-ch {
    height: 58px;
    border-radius: 6px;
}
.corp-brand-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* Headline */
.corp-headline-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    max-width: 820px;
}
.corp-headline {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #fff;
    text-transform: uppercase;
}
.corp-headline-accent {
    color: #aaff00;
    display: block;
}
.corp-headline-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(to right, #e91e8c, #ff4db0);
    border-radius: 2px;
    flex-shrink: 0;
}
.corp-desc {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 400;
    color: #b0a0c8;
    line-height: 1.75;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    max-width: 640px;
}
.corp-desc-accent {
    color: #e91e8c;
    font-weight: 600;
}

/* Feature icons grid */
.corp-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    width: 100%;
}
.corp-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.4rem 0.5rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}
.corp-feature-item:last-child { border-right: none; }
.corp-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.corp-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.corp-feature-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9980c0;
    line-height: 1.45;
}

/* Bottom bar */
.corp-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    background: rgba(255,255,255,0.025);
    gap: 2rem;
    flex-wrap: wrap;
}
.corp-social-label-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.corp-social-title {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}
.corp-social-script {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    font-weight: 400;
    color: #aaff00;
    letter-spacing: 0.03em;
    margin-top: 0.1rem;
}
.corp-social-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8878a8;
}
.corp-tag-sep {
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}
.corp-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e91e8c;
    border: 2px solid #e91e8c;
    border-radius: 6px;
    padding: 1rem 2.4rem;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
    cursor: pointer;
    min-width: 160px;
}
.corp-enquire-btn:hover {
    background: rgba(233,30,140,0.12);
    box-shadow: 0 0 28px rgba(233,30,140,0.35);
    transform: translateY(-2px);
    color: #ff4db0;
    border-color: #ff4db0;
}

/* Responsive */
@media (max-width: 1024px) {
    .corp-features-grid { grid-template-columns: repeat(3, 1fr); }
    .corp-feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .corp-feature-item:nth-child(3n) { border-right: none; }
    .corp-feature-item:nth-last-child(-n+3) { border-bottom: none; }
}
@media (max-width: 768px) {
    .corp-pool-section { padding: 6rem 5%; }
    .corp-features-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .corp-feature-item { border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1.2rem 0.4rem; }
    .corp-feature-item:nth-child(2n) { border-right: none; }
    .corp-feature-item:nth-last-child(-n+2) { border-bottom: none; }
    .corp-bottom-bar { flex-direction: column; align-items: flex-start; padding: 1.8rem; }
    .corp-enquire-btn { width: 100%; text-align: center; }
}
@media (max-width: 500px) {
    .corp-pool-section { padding: 4.5rem 5%; }
    .corp-pool-inner { gap: 2.5rem; }
    .corp-brand-logo { height: 40px; }
    .corp-brand-logo-ch { height: 44px; }
    .corp-features-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Contact Us Section ──────────────────────────────────────── */
.ch-contact-section {
    padding: 8rem 5%;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10;
}
.ch-contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.25), transparent);
}

.ch-contact-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    margin-top: 1rem;
    align-items: start;
}

.ch-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.ch-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ch-contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ch-contact-label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #a855f7;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.3rem;
}

.ch-contact-val {
    font-size: 0.9rem;
    color: #c0b0e0;
    font-weight: 400;
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    line-height: 1.5;
}

.ch-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(145deg, rgba(168,85,247,0.05), rgba(99,102,241,0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2.2rem;
}

@media (max-width: 768px) {
    .ch-contact-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .ch-contact-section { padding: 6rem 5%; }
}
@media (max-width: 600px) {
    .ch-contact-section { padding: 4.5rem 5%; }
    .ch-contact-form { padding: 1.8rem 1.4rem; }
}

