/* ============================================
   EVENT LANDING PAGE - VIBRANT COMPACT STYLE
   Mobile-First, Modern Event Booking
   ============================================ */

/* CSS Variables - Vibrant Color Palette */
:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #EC4899;
    --accent: #F59E0B;
    --accent-green: #10B981;
    --accent-cyan: #06B6D4;
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-100: #F3F4F6;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-dark: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Background */
.event-landing-page {
    background: var(--dark);
    min-height: 100vh;
}

.event-landing-page .main-content {
    padding: 0 !important;
    margin: 0 !important;
    background: var(--dark);
}

.event-landing-page .content-wrapper {
    max-width: 100%;
    padding: 0;
}

.event-landing-page .top-banner,
.event-landing-page .main-header {
    display: none !important;
}

.event-landing-page .main-footer {
    margin-top: 0;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   1. COMPACT HERO SECTION
   ============================================ */
.hero-fullpage {
    position: relative;
    min-height: auto;
    padding: 20px 16px 17px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-fullpage::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-fullpage::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-banner-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 24px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.hero-banner-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero-banner-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
}

/* Hero Sponsors Overlay */
.hero-sponsors-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.85) 100%);
    padding: 24px 0 16px;
    z-index: 5;
}

.hero-sponsor-row {
    margin-bottom: 12px;
}

.hero-sponsor-row:last-child {
    margin-bottom: 0;
}

.hero-sponsor-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-sponsor-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.hero-sponsor-track {
    display: flex;
    gap: 40px;
    animation: scroll-hero-sponsors 20s linear infinite;
    width: fit-content;
}

.hero-sponsor-row:nth-child(even) .hero-sponsor-track {
    animation-direction: reverse;
}

@keyframes scroll-hero-sponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.hero-sponsor-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-sponsor-logo {
    max-width: 100px;
    max-height: 45px;
    object-fit: contain;
    filter: brightness(1) grayscale(0%);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.hero-sponsor-item:hover .hero-sponsor-logo {
    opacity: 1;
    transform: scale(1.1);
}

.hero-sponsor-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    white-space: nowrap;
}

/* Mobile adjustments for hero sponsors */
@media (max-width: 576px) {
    .hero-sponsors-overlay {
        padding: 16px 0 10px;
    }

    .hero-sponsor-label {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .hero-sponsor-track {
        gap: 28px;
    }

    .hero-sponsor-logo {
        max-width: 75px;
        max-height: 32px;
    }

    .hero-sponsor-name {
        font-size: 11px;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-presenter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.hero-presenter img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid var(--primary);
}

.hero-presenter strong {
    color: #fbbf24;
    font-weight: 800;
}

.hero-quick-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-info-item i {
    font-size: 18px;
    color: #fbbf24;
}

.quick-info-item i.link-icon {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-left: 2px;
}

/* Clickable address item */
.quick-info-item.clickable {
    cursor: pointer;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
    border-color: rgba(34, 197, 94, 0.4);
}

.quick-info-item.clickable:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.5) 0%, rgba(16, 185, 129, 0.5) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.quick-info-item.clickable i:first-child {
    color: #4ade80;
}

/* Date highlight in hero */
.quick-info-item.date-highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.4) 0%, rgba(245, 158, 11, 0.4) 100%);
    border-color: rgba(251, 191, 36, 0.5);
    font-size: 14px;
    font-weight: 600;
}

.quick-info-item.date-highlight i {
    color: #fbbf24;
    font-size: 20px;
}

/* Time highlight in hero - Most prominent */
.quick-info-item.time-highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.5) 0%, rgba(245, 158, 11, 0.5) 100%);
    border-color: rgba(251, 191, 36, 0.6);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.quick-info-item.time-highlight i {
    color: #fbbf24;
    font-size: 22px;
}

@media (max-width: 640px) {
    .hero-quick-info {
        gap: 8px;
    }

    .quick-info-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .quick-info-item i {
        font-size: 16px;
    }

    .quick-info-item.date-highlight {
        font-size: 13px;
    }

    .quick-info-item.time-highlight {
        font-size: 14px;
        padding: 10px 16px;
    }

    .quick-info-item.time-highlight i {
        font-size: 18px;
    }
}

/* Promoter Showcase in Hero */
.promoter-showcase-hero {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 400px;
}

.showcase-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.showcase-badge-hero i {
    font-size: 12px;
}

.showcase-logo-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    max-width: 100%;
    overflow: hidden;
}

.showcase-logo-img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
}

.showcase-title-hero {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.showcase-contacts-hero {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.contact-link-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.contact-link-hero i {
    font-size: 14px;
    color: #fbbf24;
}

@media (max-width: 480px) {
    .promoter-showcase-hero {
        margin-top: 16px;
        padding: 12px 14px;
    }

    .showcase-title-hero {
        font-size: 16px;
    }

    .contact-link-hero {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* Hide scroll indicator on compact design */
.scroll-indicator {
    display: none;
}

/* ============================================
   2. EVENT DETAILS SECTION
   ============================================ */
.event-details-section {
    padding: 17px 16px;
    background: linear-gradient(180deg, var(--dark) 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.event-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

/* Event Description Hero */
.event-description-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 0 16px;
}

.event-description-hero p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-style: italic;
    position: relative;
}

.event-description-hero p::before,
.event-description-hero p::after {
    content: '"';
    font-size: 48px;
    color: rgba(139, 92, 246, 0.3);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: middle;
}

.event-description-hero p::before {
    margin-right: 8px;
}

.event-description-hero p::after {
    margin-left: 8px;
}

/* ============================================
   SPONSOR AUTO-SCROLL CAROUSELS
   ============================================ */

/* Secondary Sponsors Section (before ticket selection) */
.secondary-sponsors-section {
    padding: 20px 16px;
    background: linear-gradient(180deg, #0f172a 0%, var(--dark) 100%);
}

.secondary-sponsors-section .sponsor-carousel-wrapper {
    margin-bottom: 0;
}

.secondary-sponsors-section .sponsor-carousel-label {
    color: rgba(255, 255, 255, 0.7);
}

.sponsors-carousel-section {
    margin-bottom: 32px;
}

.sponsor-carousel-wrapper {
    margin-bottom: 20px;
    overflow: hidden;
}

.sponsor-carousel-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.sponsor-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.sponsor-carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll-sponsors 30s linear infinite;
    width: fit-content;
}

.sponsor-carousel-wrapper:nth-child(2) .sponsor-carousel-track {
    animation-direction: reverse;
    animation-duration: 25s;
}

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

.sponsor-carousel:hover .sponsor-carousel-track {
    animation-play-state: paused;
}

.sponsor-carousel-item {
    flex-shrink: 0;
}

.sponsor-carousel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
    height: 60px;
}

a.sponsor-carousel-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
}

.sponsor-carousel-logo {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0.9) grayscale(20%);
    transition: all 0.3s ease;
}

a.sponsor-carousel-link:hover .sponsor-carousel-logo {
    filter: brightness(1) grayscale(0%);
}

.sponsor-carousel-name {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    white-space: nowrap;
}

a.sponsor-carousel-link:hover .sponsor-carousel-name {
    color: var(--white);
}

/* Mobile adjustments for carousels */
@media (max-width: 576px) {
    .sponsor-carousel-track {
        gap: 24px;
    }

    .sponsor-carousel-link {
        padding: 10px 16px;
        min-width: 100px;
        height: 50px;
    }

    .sponsor-carousel-logo {
        max-width: 80px;
        max-height: 32px;
    }

    .sponsor-carousel-label {
        font-size: 0.7rem;
    }
}

/* Contact Us Button */
.contact-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 20px;
    color: #4ade80;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-us-btn:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(16, 185, 129, 0.25) 100%);
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.contact-us-btn i {
    font-size: 14px;
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.contact-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-modal-overlay.active .contact-modal {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.contact-modal-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    padding: 20px 16px 12px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-modal-content {
    padding: 16px;
}

.contact-section {
    margin-bottom: 16px;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.contact-section-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-section-label i {
    font-size: 14px;
    color: #4ade80;
}

.contact-modal-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.contact-modal-link:last-child {
    margin-bottom: 0;
}

.contact-modal-link:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateX(4px);
}

.contact-modal-link i {
    font-size: 18px;
    color: #4ade80;
}

/* Mobile contact modal adjustments */
@media (max-width: 576px) {
    .contact-modal {
        max-width: 90%;
    }

    .contact-us-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Promoter & Venue Showcase */
.promoter-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .promoter-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

.showcase-card {
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.showcase-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.venue-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.venue-card:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.venue-glow {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

.showcase-badge i {
    font-size: 14px;
}

.venue-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.showcase-content {
    position: relative;
    z-index: 1;
}

.showcase-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    line-height: 1.3;
}

.showcase-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateX(4px);
}

.contact-link i {
    font-size: 16px;
    color: #a78bfa;
}

.venue-actions {
    margin-top: 8px;
}

.venue-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.venue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.venue-btn i {
    font-size: 18px;
}

/* Event Info Bar - Big & Prominent */
.event-info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.4);
    margin: 0 auto 16px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.info-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #fff;
    padding: 10px 20px;
    position: relative;
}

.info-bar-item i {
    font-size: 20px;
    color: #fbbf24;
    margin-bottom: 2px;
}

.info-bar-item .info-label {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

.info-bar-item .info-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Time item - Extra prominent */
.info-bar-item.time-item .info-value {
    font-size: 18px;
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.info-bar-item.time-item i {
    font-size: 22px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* Date item - Also prominent */
.info-bar-item.date-item .info-value {
    font-size: 15px;
}

/* Location item - Clickable full-width */
.info-bar-item.location-item {
    flex-direction: row;
    gap: 10px;
    padding: 14px 28px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-bar-item.location-item:hover {
    background: rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}

.info-bar-item.location-item .info-value {
    font-size: 16px;
    font-weight: 600;
}

.info-bar-item.location-item .link-icon {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
}

.info-bar-divider {
    width: 2px;
    height: 50px;
    background: rgba(251, 191, 36, 0.4);
}

/* Venue Info Bar - Compact below info bar */
.venue-info-bar {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.venue-link:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.venue-link i:first-child {
    font-size: 16px;
    color: #4ade80;
}

.venue-link i:last-child {
    font-size: 12px;
    opacity: 0.6;
}

/* Promoter showcase single column */
.promoter-showcase {
    display: block;
    max-width: 500px;
    margin: 0 auto 24px;
}

@media (max-width: 640px) {
    .event-description-hero p {
        font-size: 16px;
    }

    .showcase-title {
        font-size: 18px;
    }

    .event-info-bar {
        flex-wrap: wrap;
        border-radius: 8px;
        width: auto;
        margin: 0 auto 10px;
        border-width: 1px;
    }

    .info-bar-divider {
        display: none;
    }

    .info-bar-item {
        padding: 6px 10px;
        gap: 1px;
    }

    .info-bar-item i {
        font-size: 14px;
        margin-bottom: 1px;
    }

    .info-bar-item .info-label {
        font-size: 7px;
        letter-spacing: 0.3px;
    }

    .info-bar-item .info-value {
        font-size: 11px;
    }

    .info-bar-item.time-item .info-value {
        font-size: 13px;
    }

    .info-bar-item.date-item .info-value {
        font-size: 11px;
    }

    .venue-link {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Legacy Info Cards (kept for compatibility) */
.event-info-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.event-info-grid::-webkit-scrollbar {
    display: none;
}

.info-card {
    flex: 0 0 auto;
    min-width: 140px;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.info-label {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

/* Description Card (Legacy) */
.event-description-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.event-description-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-description-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Venue Preview - Compact */
.venue-preview-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.venue-preview-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.venue-preview-card h3::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.venue-preview-map {
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 8px;
}

.venue-svg-preview {
    width: 100%;
    height: auto;
    max-height: 180px;
}

.venue-preview-hint {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
}

/* Organizer Card */
.organizer-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.organizer-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.organizer-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: var(--white);
    padding: 4px;
}

.organizer-info {
    flex: 1;
}

.organizer-label {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
}

.organizer-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.organizer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-300);
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-item i {
    font-size: 14px;
}

/* Prices Overview */
.prices-overview-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.prices-overview-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prices-overview-card h3::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.prices-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.price-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.price-amount {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
}

.price-type {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-left: 8px;
}

/* ============================================
   3. TICKET SELECTION - VIBRANT CARDS
   ============================================ */
.ticket-selection-section {
    padding: 32px 16px 100px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 6px;
}

.section-header p {
    font-size: 13px;
    color: var(--gray-400);
}

/* Ticket Cards Grid */
.ticket-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.ticket-card {
    position: relative;
    background: var(--gray-800);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}

.ticket-card.sold-out {
    opacity: 0.6;
    cursor: not-allowed;
}

.ticket-card.sold-out:hover {
    transform: none;
    box-shadow: none;
}

.ticket-card-header {
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ticket-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.9;
}

.ticket-category-name {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.ticket-type-badge {
    position: relative;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-full);
    color: var(--white);
}

.ticket-card-body {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-900);
}

.ticket-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.price-suffix {
    font-size: 12px;
    color: var(--gray-400);
    margin-left: 4px;
}

.ticket-availability {
    text-align: right;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.availability-badge.available {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.availability-badge.sold-out {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.ticket-card-footer {
    padding: 12px 18px;
    background: rgba(255,255,255,0.03);
    text-align: center;
}

.select-hint {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.select-hint.disabled {
    color: var(--gray-600);
}

/* Ticket Decorations */
.ticket-notch {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--dark);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.ticket-notch.left { left: -8px; }
.ticket-notch.right { right: -8px; }

.ticket-barcode {
    display: none;
}

/* ============================================
   3.5 SPONSORS SECTION
   ============================================ */
.sponsors-section {
    padding: 60px 0;
    background: var(--dark-light);
}

.sponsors-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sponsors-section .section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.sponsors-section .section-header p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.sponsors-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sponsor-category {
    text-align: center;
}

.sponsor-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.sponsor-category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Single sponsor - large centered */
.sponsors-single {
    display: flex;
    justify-content: center;
}

.sponsors-single .sponsor-item {
    max-width: 300px;
}

.sponsors-single .sponsor-logo {
    max-width: 220px;
    max-height: 120px;
}

/* Few sponsors (2-3) - centered row */
.sponsors-few {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.sponsors-few .sponsor-item {
    max-width: 180px;
}

.sponsors-few .sponsor-logo {
    max-width: 140px;
    max-height: 80px;
}

/* Multiple sponsors - grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.sponsors-grid .sponsor-logo {
    max-width: 100px;
    max-height: 60px;
}

.sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsor-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    width: 100%;
}

a.sponsor-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.sponsor-logo {
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

a.sponsor-link:hover .sponsor-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.sponsor-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.sponsor-name-text {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
    padding: 8px;
}

.sponsor-name {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    text-align: center;
}

a.sponsor-link:hover .sponsor-name {
    color: var(--white);
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .sponsors-section {
        padding: 40px 0;
    }

    .sponsors-section .section-header h2 {
        font-size: 1.5rem;
    }

    .sponsors-categories {
        gap: 32px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sponsor-link {
        padding: 16px 12px;
    }

    .sponsors-single .sponsor-logo {
        max-width: 180px;
        max-height: 100px;
    }

    .sponsors-few .sponsor-logo {
        max-width: 100px;
        max-height: 60px;
    }

    .sponsors-grid .sponsor-logo {
        max-width: 80px;
        max-height: 50px;
    }
}

/* ============================================
   4. FLOATING CTA - VIBRANT
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 100;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.cta-text {
    font-size: 15px;
    font-weight: 700;
}

.cta-price {
    font-size: 13px;
    opacity: 0.9;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.3);
}

/* ============================================
   5. VENUE LAYOUT POPUP - FULLSCREEN
   ============================================ */
.venue-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-popup.active {
    display: flex;
    opacity: 1;
}

.venue-popup-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--dark);
}

.venue-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: transparent;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.venue-header-spacer {
    flex: 1;
}

.venue-back-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.venue-back-btn:hover {
    background: var(--primary);
}

.venue-popup-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.venue-popup-close:hover {
    background: var(--primary);
}

.venue-popup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 45px 0 0 0;
    overflow: hidden;
    min-height: 0;
}

.venue-svg-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4px 8px;
    overflow: auto;
    min-height: 0;
}

.venue-layout-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.venue-block {
    transition: all 0.2s ease;
}

.venue-block.clickable {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    animation: blockPulse 2s ease-in-out infinite;
}

.venue-block.clickable .block-rect {
    transition: all 0.2s ease;
}

/* Gentle pulse animation to indicate tappable */
@keyframes blockPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    }
}

.venue-block.clickable:hover .block-rect,
.venue-block.clickable:active .block-rect {
    filter: brightness(1.2);
}

.venue-block.clickable:hover,
.venue-block.clickable:active {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.7));
    transform: scale(1.02);
}

/* Active/tap state for mobile */
.venue-block.clickable:active {
    transform: scale(0.98);
}

.venue-block.sold-out {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Make text non-selectable to avoid accidental text selection on tap */
.venue-block text {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

/* Seat pattern overlay styling */
.seat-pattern-overlay {
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* Enhance pattern visibility on hover */
.venue-block.clickable:hover .seat-pattern-overlay {
    opacity: 1;
}

/* Selected category - white border highlight */
.venue-block.highlighted {
    animation: none;
}

.venue-block.highlighted .block-rect {
    stroke: #FFFFFF;
    stroke-width: 3;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

/* Non-selected blocks - keep normal appearance, fully clickable */
.venue-block.dimmed {
    cursor: pointer;
}

.venue-block.dimmed .block-rect {
    /* No filter - keep original colors */
}

/* Venue Tap Instruction - Above Stage */
.venue-tap-instruction {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 16px 8px;
    text-align: center;
}

.venue-tap-instruction span {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.venue-tap-instruction i {
    font-size: 24px;
    color: var(--primary-light);
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Venue Disclaimer */
.venue-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    margin: 12px 16px 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-sm);
}

.venue-disclaimer i {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

.venue-disclaimer span {
    font-size: 10px;
    color: var(--accent);
    text-align: center;
    line-height: 1.3;
}

/* Tap Animation */
@keyframes tapBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

/* Venue Continue Bar (appears when category selected) */
.venue-continue-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.venue-continue-bar.visible {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.venue-continue-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.venue-continue-category {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.venue-continue-block {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.venue-continue-price {
    font-size: 12px;
    color: var(--primary-light);
}

.venue-continue-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    animation: btnPulse 1.5s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.5);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px 5px rgba(139, 92, 246, 0.4);
    }
}

.venue-continue-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
    animation: none;
}

.venue-continue-btn i {
    font-size: 18px;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* Venue Ticket Price Cards at Bottom */
.venue-ticket-prices {
    flex-shrink: 0;
    background: var(--gray-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.venue-ticket-prices.compact {
    padding: 6px 0;
}

.venue-tickets-scroll {
    display: flex;
    gap: 8px;
    padding: 0 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.venue-tickets-scroll::-webkit-scrollbar {
    display: none;
}

.venue-ticket-card {
    flex: 0 0 auto;
    min-width: 140px;
    background: var(--gray-800);
    border-radius: 10px;
    padding: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.venue-ticket-card:hover:not(.sold-out) {
    transform: translateY(-2px);
    border-color: var(--ticket-color, var(--primary));
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.venue-ticket-card.sold-out {
    opacity: 0.5;
    cursor: not-allowed;
}

.venue-ticket-card.highlighted {
    border-color: var(--ticket-color, var(--primary));
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
}

.venue-ticket-card.dimmed {
    opacity: 0.7;
    cursor: pointer;
}

.venue-ticket-card.highlighted {
    opacity: 1;
    border-color: #FFFFFF;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.venue-ticket-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

.venue-ticket-info {
    padding-left: 8px;
    margin-bottom: 8px;
}

.venue-ticket-name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.venue-ticket-type {
    font-size: 9px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.venue-ticket-price {
    display: flex;
    align-items: baseline;
    padding-left: 8px;
    margin-bottom: 6px;
}

.venue-ticket-currency {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.venue-ticket-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.venue-ticket-available {
    display: block;
    padding-left: 8px;
    font-size: 10px;
    color: var(--accent-green);
    font-weight: 600;
}

.venue-ticket-soldout {
    display: block;
    padding-left: 8px;
    font-size: 10px;
    color: #EF4444;
    font-weight: 600;
}

.venue-ticket-notch {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--gray-900);
    border-radius: 50%;
}

/* Compact Ticket Cards */
.venue-ticket-prices.compact {
    padding: 8px 12px;
}

.venue-ticket-card.compact {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: auto;
    padding: 8px 12px 8px 14px;
    border-radius: 8px;
}

.venue-ticket-card.compact .venue-ticket-color {
    width: 3px;
    border-radius: 8px 0 0 8px;
}

.venue-ticket-card.compact .venue-ticket-name {
    flex: 1;
    font-size: 13px;
    margin-bottom: 0;
    padding-left: 0;
    max-width: 120px;
}

.venue-ticket-price-compact {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.venue-ticket-soldout-badge {
    font-size: 9px;
    font-weight: 600;
    color: #EF4444;
    background: rgba(239, 68, 68, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.venue-popup-hint {
    display: none;
}

/* ============================================
   6. SEAT SELECTION MODAL - DARK THEME
   ============================================ */
.seat-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seat-modal.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--dark);
}

/* Modal Header */
.modal-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--gray-900);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.modal-back-btn,
.modal-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.modal-back-btn:hover,
.modal-close-btn:hover {
    background: var(--primary);
}

.modal-title {
    flex: 1;
    text-align: center;
}

.modal-title h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.modal-title span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-light);
}

/* Change Category Button */
.change-category-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.change-category-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.5);
}

.change-category-btn i {
    font-size: 14px;
}


/* Modal Content */
.modal-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    padding-bottom: 20px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e2e8f0 100%);
    -webkit-overflow-scrolling: touch;
}

.modal-seat-area {
    position: relative;
}

/* Stage Indicator - Centered */
.stage-indicator {
    text-align: center;
    margin-bottom: 20px;
}

.stage-indicator span {
    display: inline-block;
    padding: 14px 50px;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 3px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Sticky Back Button - Left Side */
.back-sticky-container {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 100;
}

.back-sticky-btn {
    width: 44px;
    height: 44px;
    border: 3px solid #3B82F6;
    border-radius: 50%;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: #3B82F6;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: pulse-border-blue 2s ease-in-out infinite;
}

@keyframes pulse-border-blue {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3), 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5), 0 0 0 6px rgba(59, 130, 246, 0);
    }
}

.back-sticky-btn:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    transform: scale(1.1);
    animation: none;
}

/* Sticky Zoom Container - Fixed on right side */
.zoom-sticky-container {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100;
}

.zoom-sticky-container .zoom-controls {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.zoom-panel-btn:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-color: #3B82F6;
    color: white;
    transform: scale(1.1);
}

.zoom-panel-btn.reset {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #fbbf24;
    color: #92400e;
}

.zoom-panel-btn.reset:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1F2937;
}

.zoom-panel-btn.fit {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
    color: #065f46;
}

.zoom-panel-btn.fit:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.zoom-panel .zoom-level {
    min-width: 45px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .stage-indicator span {
        padding: 10px 30px;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .back-sticky-container {
        left: 5px;
        top: 5px;
    }

    .back-sticky-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .zoom-sticky-container {
        right: 5px;
        top: 5px;
    }
}

/* Theater sections */
.theater-section {
    margin-bottom: 20px;
    transition: all 0.4s ease;
    scroll-margin-top: 20px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    overflow: visible;
}

.theater-section.inactive {
    opacity: 0.4;
    filter: blur(1px);
}

.theater-section .section-header-bar {
    color: white;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.section-header-bar .header-scroll-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #fbbf24;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.section-header-bar .header-scroll-btn.left {
    animation: pulseLeft 1.5s ease-in-out infinite;
}

.section-header-bar .header-scroll-btn.right {
    animation: pulseRight 1.5s ease-in-out infinite;
}

@keyframes pulseLeft {
    0%, 100% { transform: translateX(0); box-shadow: 0 0 10px rgba(251, 191, 36, 0.4); }
    50% { transform: translateX(-3px); box-shadow: 0 0 15px rgba(251, 191, 36, 0.7); }
}

@keyframes pulseRight {
    0%, 100% { transform: translateX(0); box-shadow: 0 0 10px rgba(251, 191, 36, 0.4); }
    50% { transform: translateX(3px); box-shadow: 0 0 15px rgba(251, 191, 36, 0.7); }
}

.section-header-bar .header-scroll-btn:hover {
    background: rgba(251, 191, 36, 0.4);
    transform: scale(1.15);
    animation: none;
}

.section-header-bar .header-scroll-btn:active {
    transform: scale(0.95);
    animation: none;
}

.section-header-bar .header-scroll-btn i {
    line-height: 1;
}

.section-header-bar .header-center {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.section-header-bar .header-category-name {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header-bar .header-scroll-hint {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    background: #EF4444;
    padding: 4px 12px;
    border-radius: 20px;
    animation: scrollHintPulse 2s ease-in-out infinite;
}

@keyframes scrollHintPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.section-header-bar .header-scroll-hint i {
    font-size: 16px;
    animation: moveHorizontal 1.5s ease-in-out infinite;
}

@keyframes moveHorizontal {
    0%, 100% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
}

.theater-section.inactive .section-header-bar:hover {
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Seats container - white glassmorphic style */
.seats-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.seats-container.active {
    border-width: 2px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
}

/* Seat Grid Container - with max height and scroll */
.seat-grid-container {
    max-height: 60vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
    scrollbar-color: #3B82F6 #e5e7eb;
    border-radius: 10px;
    position: relative;
}

.seat-grid-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.seat-grid-container::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 5px;
}

.seat-grid-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-radius: 5px;
    border: 2px solid #e5e7eb;
}

.seat-grid-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.seat-grid-container::-webkit-scrollbar-corner {
    background: #e5e7eb;
}

/* Scroll container for seats */
.seats-scroll-container {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
    scrollbar-color: #3B82F6 #e5e7eb;
    padding: 10px;
    padding-bottom: 15px;
    margin: 0 -10px;
    border-radius: 10px;
}

.seats-scroll-container::-webkit-scrollbar {
    height: 12px;
    width: 12px;
    display: block;
}

.seats-scroll-container::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 6px;
    margin: 0 10px;
}

.seats-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-radius: 6px;
    border: 2px solid #e5e7eb;
}

.seats-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.seats-scroll-container::-webkit-scrollbar-corner {
    background: #e5e7eb;
    border-radius: 4px;
}

/* Bottom scroll indicator - Amber/Orange theme for visibility */
.scroll-indicator-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 14px;
    margin: 0 auto 4px;
    width: fit-content;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.25) 100%);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.2);
}

.scroll-indicator-bottom .scroll-arrow-btn {
    width: 28px;
    height: 28px;
    border: 1.5px solid #fbbf24;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.9);
    color: #fbbf24;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.scroll-indicator-bottom .scroll-arrow-btn:hover {
    background: #fbbf24;
    color: #1F2937;
    transform: scale(1.1);
}

.scroll-indicator-bottom .scroll-arrow-btn:active {
    transform: scale(0.95);
}

.scroll-indicator-bottom .scroll-text {
    font-size: 11px;
    color: #fbbf24;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.scroll-indicator-bottom .scroll-text i {
    color: #f59e0b;
    font-size: 14px;
    animation: bounceHorizontal 1s ease-in-out infinite;
}

@keyframes bounceHorizontal {
    0%, 100% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
}

/* Mobile - larger touch targets */
@media (max-width: 640px) {
    .scroll-indicator-bottom {
        gap: 10px;
        padding: 8px 16px;
    }

    .scroll-indicator-bottom .scroll-arrow-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .scroll-indicator-bottom .scroll-text {
        font-size: 10px;
    }
}

/* Scroll arrows - positioned on top of seat grid
   Key fixes:
   - translate3d for iOS hardware acceleration (required for z-index with -webkit-overflow-scrolling)
   - pointer-events: none when hidden
   - Explicit left:auto/right:auto to prevent position conflicts on mobile
*/
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translate3d(0,0,0);
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.scroll-arrow.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-arrow.left {
    left: 8px;
    right: auto;
}

.scroll-arrow.right {
    right: 8px;
    left: auto;
}

/* Scroll hint gradients */
.seats-container.active::before,
.seats-container.active::after {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 10px;
    width: 25px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s;
}

.seats-container.active.scroll-left::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9), transparent);
    opacity: 1;
}

.seats-container.active.scroll-right::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
    opacity: 1;
}

/* Seat Grid */
.seat-grid-container {
    min-height: 200px;
    position: relative;
}

.loading-seats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Seats Layout */
.seats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: fit-content;
    margin: 0 auto;
}

.seats-header-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 0;
    min-width: fit-content;
    gap: 4px;
}

.seat-row-container {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    min-width: fit-content;
}

.seat-row {
    display: flex;
    gap: 2px;
    align-items: center;
}

.row-label {
    width: 45px;
    font-weight: bold;
    color: #333;
    font-size: 12px;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 5px;
}

.row-label.left { text-align: right; padding-right: 6px; margin-right: 5px; }
.row-label.right { text-align: left; padding-left: 6px; margin-left: 5px; margin-right: 0; }

.label-spacer {
    width: 50px;
    flex-shrink: 0;
}

.column-label {
    font-size: 10px;
    font-weight: 600;
    color: white;
    padding: 3px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.column-label.highlighted {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: scale(1.05);
    animation: pulseHighlight 0.5s ease-out;
}

@keyframes pulseHighlight {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1.05); }
}

.aisle {
    width: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aisle::after {
    content: '';
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.center-aisle {
    width: 15px;
    flex-shrink: 0;
}

.empty-column {
    visibility: hidden;
    width: 80px;
    height: 24px;
}

/* Individual Seats - Circular style - Compact Version */
.seat {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background-color: white;
    color: #333;
    font-size: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    padding: 0;
}

/* Hover state */
.seat:hover:not(:disabled) {
    border-color: #9CA3AF;
}

/* Disabled state */
.seat:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.seat.available {
    background-color: white;
    border-color: #E5E7EB;
    color: #333;
}

.seat.available:hover {
    border-color: #9CA3AF;
}

.seat.selected {
    font-weight: bold;
    color: white;
    background-color: #8B5CF6 !important;
    border-color: #8B5CF6 !important;
}

.seat.sold {
    background-color: #DC2626;
    border-color: #DC2626;
    color: white;
    cursor: not-allowed;
}

/* Temp sold out (marketing) - show same as sold to customers */
.seat.temp_soldout {
    background-color: #DC2626;
    border-color: #DC2626;
    color: white;
    cursor: not-allowed;
}

.seat.reserved {
    background-color: #F59E0B;
    border-color: #F59E0B;
    color: white;
    cursor: not-allowed;
}

.seat.seat-placeholder {
    visibility: hidden;
}

.seat:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Legend and Zoom Container */
.legend-zoom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 12px;
    margin-top: 12px;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Seat Legend */
.seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: #4a5568;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-dot.available { background: var(--accent-green); }
.legend-dot.selected { background: var(--primary); }
.legend-dot.sold { background: #DC2626; }
.legend-dot.reserved { background: #F59E0B; }
.legend-dot.wheelchair { background: #0284C7; }
.legend-dot.companion { background: #9333EA; }

/* Zoom Controls in Legend */
.zoom-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    padding: 3px 6px;
    border-radius: 6px;
}

.zoom-btn {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 5px;
    background: white;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.zoom-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.05);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.zoom-btn.reset {
    background: #e2e8f0;
}

.zoom-btn.reset:hover {
    background: #f59e0b;
    color: white;
}

.zoom-level-bottom {
    font-size: 10px;
    font-weight: 600;
    color: #4a5568;
    min-width: 32px;
    text-align: center;
}

/* Mobile - stack legend and zoom */
@media (max-width: 480px) {
    .legend-zoom-container {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }

    .zoom-controls {
        width: 100%;
        justify-content: center;
        gap: 6px;
    }

    .zoom-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Modal Footer */
.modal-footer {
    padding: 16px 16px 20px;
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.selected-seats-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 8px;
}

.selected-seats-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-bottom: 4px;
}

.selected-seats-label i {
    font-size: 16px;
}

.selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
    max-height: 90px;
    overflow-y: auto;
}

.selected-list .no-seats {
    font-size: 12px;
    color: var(--gray-400);
}

.selected-seat-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    color: var(--white);
}

.selected-seat-item .remove-seat {
    width: 16px;
    height: 16px;
    border: none;
    background: #DC2626;
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.4);
}

.selected-seat-item .remove-seat:hover {
    background: #B91C1C;
    transform: scale(1.1);
}

.selected-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.checkout-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.total-price {
    flex: 1;
}

.total-label {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
}

.total-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.checkout-btn {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.checkout-btn:disabled {
    background: var(--gray-700);
    cursor: not-allowed;
}

/* ============================================
   6. STANDING TICKET AREA
   ============================================ */
.standing-area {
    text-align: center;
    padding: 32px 16px;
}

.standing-area .standing-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.standing-area .standing-icon i {
    font-size: 24px;
    color: var(--white);
}

.standing-area h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 6px;
}

.standing-area p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0 0 20px;
}

.standing-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.standing-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standing-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
}

.standing-btn:disabled {
    border-color: var(--gray-600);
    color: var(--gray-600);
    cursor: not-allowed;
}

.standing-count {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    min-width: 60px;
}

.standing-info {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 12px !important;
}

/* General Admission Area - uses same styles as standing but with different icon color */
.general-admission-area .standing-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

/* Error State */
.seat-error {
    text-align: center;
    padding: 32px 16px;
    color: var(--white);
}

.seat-error i {
    font-size: 40px;
    color: #DC2626;
    margin-bottom: 12px;
}

.seat-error p {
    font-size: 13px;
    color: var(--gray-400);
    margin: 0 0 12px;
}

.seat-error button {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    cursor: pointer;
}

.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============================================
   7. RESPONSIVE - MOBILE FIRST
   ============================================ */

/* Mobile specific - smaller screens - Compact Version */
@media (max-width: 639px) {
    .seat {
        width: 17px;
        height: 17px;
        min-width: 17px;
        font-size: 8px;
    }

    .seat-row {
        gap: 1px;
    }

    .seats-header-row {
        gap: 1px;
    }

    .seat-row-container {
        margin-bottom: 1px;
    }

    .aisle,
    .center-aisle {
        width: 10px;
    }

    .row-label {
        width: 25px;
        font-size: 8px;
    }

    .label-spacer {
        width: 25px;
    }

    .column-label {
        font-size: 7px;
        padding: 2px 0;
        min-width: auto;
    }

    .seats-container {
        padding: 6px;
    }

    .seats-container.active {
        padding: 6px 4px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .scroll-arrow.left {
        left: 4px;
        right: auto;
    }

    .scroll-arrow.right {
        right: 4px;
        left: auto;
    }

    .theater-section .section-header-bar {
        font-size: 13px;
        padding: 8px 10px;
        gap: 6px;
    }

    .section-header-bar .header-scroll-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .section-header-bar .header-category-name {
        font-size: 14px;
    }

    .section-header-bar .header-scroll-hint {
        font-size: 12px;
        padding: 3px 10px;
    }

    .section-header-bar .header-scroll-hint i {
        font-size: 14px;
    }

    .stage-indicator span {
        padding: 12px 30px;
        font-size: 14px;
        letter-spacing: 2px;
    }
}

/* ============================================
   RESPONSIVE - TABLET & DESKTOP
   ============================================ */
@media (min-width: 640px) {
    .hero-banner-image,
    .hero-banner-placeholder {
        height: 280px;
    }

    .hero-title {
        font-size: 36px;
    }

    .event-info-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow-x: visible;
    }

    .info-card {
        min-width: auto;
    }

    .ticket-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seat {
        width: 18px;
        height: 18px;
        min-width: 18px;
        font-size: 7px;
    }

    .floating-cta {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .hero-fullpage {
        padding: 32px 24px 48px;
    }

    .hero-banner-image,
    .hero-banner-placeholder {
        height: 320px;
    }

    .hero-title {
        font-size: 42px;
    }

    .container {
        padding: 0 24px;
    }

    .event-details-section,
    .ticket-selection-section {
        padding: 48px 24px;
    }

    .ticket-selection-section {
        padding-bottom: 80px;
    }

    .ticket-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .seat {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 8px;
    }

    .modal-content {
        padding: 24px;
    }
}

/* ============================================
   CHECKOUT CONFIRMATION MODAL
   ============================================ */
.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.confirm-modal-overlay.show {
    display: flex;
}

.confirm-modal {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

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

.confirm-modal-header {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 20px;
    text-align: center;
    color: white;
}

.confirm-modal-header i {
    font-size: 36px;
    margin-bottom: 8px;
    display: block;
}

.confirm-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.confirm-modal-body {
    padding: 20px;
}

.confirm-event-name {
    font-size: 16px;
    font-weight: 700;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.confirm-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.confirm-label i {
    font-size: 16px;
    color: #667eea;
}

.confirm-value {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.confirm-seats {
    max-width: 180px;
    word-break: break-word;
    font-size: 12px;
    line-height: 1.4;
}

.confirm-total-row {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid rgba(34, 197, 94, 0.3);
}

.confirm-total {
    font-size: 20px;
    font-weight: 800;
    color: #22c55e;
}

.confirm-note {
    margin: 14px 0 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.confirm-note i {
    font-size: 14px;
    color: #60a5fa;
}

.confirm-promo-note {
    margin: 10px 0 0 0;
    font-size: 12px;
    color: #fbbf24;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(251, 191, 36, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px dashed rgba(251, 191, 36, 0.3);
}

.confirm-promo-note i {
    font-size: 16px;
    color: #fbbf24;
}

.confirm-modal-footer {
    display: flex;
    gap: 12px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.confirm-btn-cancel,
.confirm-btn-proceed {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.confirm-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.confirm-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.confirm-btn-proceed {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.confirm-btn-proceed:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

@media (max-width: 480px) {
    .confirm-modal {
        max-width: 100%;
        margin: 10px;
    }

    .confirm-modal-header {
        padding: 16px;
    }

    .confirm-modal-header i {
        font-size: 30px;
    }

    .confirm-modal-header h3 {
        font-size: 16px;
    }

    .confirm-modal-body {
        padding: 16px;
    }

    .confirm-event-name {
        font-size: 14px;
    }

    .confirm-modal-footer {
        flex-direction: column;
        gap: 10px;
    }

    .confirm-btn-proceed {
        order: -1;
    }
}

/* GA Notice - Highlighted message */
.standing-area .ga-notice, .general-admission-area .ga-notice, .ga-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    border: 2px solid #f59e0b !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    margin: 12px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #92400e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    animation: pulse-notice 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3) !important;
    text-align: left !important;
}

.ga-notice i {
    font-size: 20px;
    color: #d97706;
    flex-shrink: 0;
}

@keyframes pulse-notice {
    0%, 100% { box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(245, 158, 11, 0.5); }
}
