/* Featured Show Section */
.featured-show {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.featured-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/shows/mundano_banner.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
    transition: transform 0.5s ease-out;
}

.featured-show:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.8));
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    background-color: var(--bg-color);
    box-shadow: 0 -20px 50px rgba(0,0,0,0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    color: #fff;
    opacity: 0.8;
}

.scroll-indicator p {
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.mundano-link {
    color: #b80703 !important;
    font-weight: 700 !important;
}

/* Mundano CTA Button (Inside Featured) */
.mundano-cta {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 100;
    background: #b80703;
    color: #d3bd9f;
    padding: 14px 28px;
    border-radius: 4px; /* Grittier, less rounded */
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(184, 7, 3, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-mundano 2s infinite;
    border: 1px solid rgba(211, 189, 159, 0.3);
    text-transform: uppercase;
}

.mundano-cta:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(184, 7, 3, 0.6);
    background: #d3bd9f;
    color: #b80703;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse-mundano {
    0% { box-shadow: 0 0 0 0 rgba(184, 7, 3, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(184, 7, 3, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 7, 3, 0); }
}

:root {
    /* Updated Design Tokens: Cyan */
    --primary: #00E5FF;
    --primary-hover: #00B8CC;
    --bg-color: #12141A;
    --surface: rgba(20, 25, 30, 0.7);
    --surface-glass: rgba(18, 20, 26, 0.85);
    --text-main: #ffffff;
    --text-muted: #8E9BAE;
    --roundness: 8px;
    --font-main: 'Spline Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Background Blobs */
.blob-bg {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.blob-1 {
    top: 5%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: var(--primary);
}

.blob-2 {
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: #00A6FF;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Typography & Utilities */
h1, h2, h3 {
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Oswald', var(--font-main);
}

.highlight {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #000;
}

.btn-primary {
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--text-main);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    width: 100%;
    padding: 160px 5% 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 0.95;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 42% 40%, transparent 40%, var(--bg-color) 90%);
    z-index: 3;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 650px;
    object-fit: cover;
    object-position: 42% 20%; /* Shift focus slightly to the left/center where he is */
    display: block;
    position: relative;
    z-index: 2;
    transform: scale(1.15); /* Subtle zoom */
    /* Blend with background - shifted center to match his position */
    -webkit-mask-image: radial-gradient(ellipse at 42% 40%, black 25%, transparent 85%);
    mask-image: radial-gradient(ellipse at 42% 40%, black 25%, transparent 85%);
    filter: brightness(1.05) contrast(1.1);
}

/* General Sections */
section:not(.hero) {
    padding: 80px 5%;
    position: relative;
    width: 100%;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1px;
}

/* Shows Section with Background */
.shows {
    background: url('assets/shows_bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.shows::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, rgba(18, 20, 26, 0.7) 20%, rgba(18, 20, 26, 0.8) 80%, var(--bg-color) 100%);
    z-index: 1;
}

.shows > * {
    position: relative;
    z-index: 2;
}

.show-category-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.show-category-wrapper {
    width: 100%;
}

/* Carousel */
.shows-carousel-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.shows-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5%;
    width: 100%;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.shows-carousel.centered {
    justify-content: center;
}

.shows-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.carousel-btn {
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-btn.prev {
    left: 2%;
}

.carousel-btn.next {
    right: 2%;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.show-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px 20px;
    flex: 0 0 auto;
    /* Responsive card width calculation to fit multiple on screen seamlessly */
    width: calc(100% / 1.2);
    max-width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
}

.show-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.3);
    z-index: 0;
    transition: filter 0.3s ease, transform 0.5s ease;
    transform: scale(1.1); /* Prevents blurred edges from showing background color */
}

.show-card.active .show-card-bg, .show-card:hover .show-card-bg {
    filter: blur(4px) brightness(0.5);
    transform: scale(1.15);
}

.show-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.show-card.active, .show-card:hover {
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 8px 40px rgba(0, 229, 255, 0.25);
    transform: translateY(-6px);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.show-date .day {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.show-date .month {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.show-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.show-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Specials Section */
.specials {
    width: 100%;
    padding-bottom: 4rem;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.video-card {
    position: relative;
    border-radius: var(--roundness);
    overflow: hidden;
    height: 450px;
    background: #000;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.video-card:hover {
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.25);
    transform: translateY(-6px) scale(1.02);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    opacity: 0.8;
    transform: scale(1.02);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    z-index: 5;
}

.video-card:hover .play-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 4;
}

.video-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    line-height: 1.1;
}

.video-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    margin-bottom: 0.5rem;
}

.video-meta .platform {
    color: var(--primary);
}

.video-meta .duration {
    color: var(--text-main);
}

/* Contact Section */
.contact {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-image {
    width: 100%;
    border-radius: var(--roundness);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-header {
    text-align: left;
    margin-bottom: 20px;
}

.contact-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.contact-email {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-container {
    background: transparent;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(18, 20, 26, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: var(--roundness);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    background: rgba(18, 20, 26, 0.9);
}

/* Footer */
footer {
    padding: 40px 5%;
    margin-top: 60px;
    width: 100%;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: white;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 1px;
}

.footer-policy {
    text-align: right;
}

.footer-policy a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-image {
        max-width: 400px;
        height: auto;
        aspect-ratio: 4/5;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-policy {
        text-align: center;
    }
}

@media (max-width: 768px) {
    section:not(.hero) {
        padding: 40px 5%;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

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

    .show-card {
        padding: 20px 15px;
        gap: 12px;
    }

    .show-date .day {
        font-size: 2rem;
    }

    .show-info h3 {
        font-size: 1rem;
    }

    .show-info p {
        font-size: 0.75rem;
    }

    .video-title {
        font-size: 1.5rem;
    }

    .video-meta {
        font-size: 0.85rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-header {
        text-align: center;
    }
}

/* YouTube Banner & Links */
.yt-banner {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.yt-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.yt-link:hover {
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    background: rgba(15, 18, 22, 0.95);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: var(--roundness);
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
    background: rgba(0,0,0,0.9);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--roundness) / 2);
}

.modal-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Show Detail Modal */
.show-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.show-modal.active {
    opacity: 1;
    pointer-events: all;
}

.show-modal-content {
    max-width: 800px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 229, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.show-modal.active .show-modal-content {
    transform: scale(1);
}

.show-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

@media (max-width: 768px) {
    .show-modal-body {
        grid-template-columns: 1fr;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .show-details-container {
        padding: 20px;
    }
    
    #showModalTitle {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .show-meta-info {
        font-size: 1rem;
        gap: 10px;
        margin-bottom: 20px;
    }

    .carousel-btn {
        display: none; /* Hide buttons on mobile, rely on native swipe */
    }
}

.show-flyer-container {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.show-flyer-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

@media (max-width: 768px) {
    .show-flyer-container img {
        max-height: 300px;
    }
}

.show-details-container {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18,20,26,0.95) 0%, rgba(0,20,30,0.95) 100%);
}

#showModalTitle {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.show-meta-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.show-meta-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.show-modal-footer {
    margin-top: auto;
}

#showModalTicketsBtn {
    font-size: 1.2rem;
    padding: 15px 30px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.2), 0 0 20px rgba(0, 229, 255, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.6), 0 0 40px rgba(0, 229, 255, 0.4);
    }
}
