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

:root {
    --primary-color: #8B5CF6;
    --secondary-color: #EC4899;
    --accent-color: #10B981;
    --dark-bg: #0F172A;
    --darker-bg: #020617;
    --light-text: #F1F5F9;
    --gray-text: #94A3B8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    overflow-x: hidden;
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 1;
    filter: brightness(0.6);
    animation: zoomPulse 20s ease-in-out infinite alternate;
}

@keyframes zoomPulse {
    0% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(236, 72, 153, 0.3) 100%);
    z-index: 2;
    mix-blend-mode: multiply;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 23, 42, 0);
    backdrop-filter: blur(0px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-nav {
    height: 40px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.logo-nav:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px;
}

.center-logo-container {
    animation: fadeInUp 1.5s ease-out;
    padding: 40px;
    overflow: visible;
}

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

.center-logo {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
    animation: logoWarp 12s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8));
}

@keyframes logoWarp {
    0%, 100% { 
        transform: translateY(0px) scale(1) perspective(1000px) rotateY(0deg);
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8)) brightness(1);
        opacity: 1;
    }
    15% { 
        transform: translateY(-15px) scale(1.05) perspective(1000px) rotateY(0deg);
        filter: drop-shadow(0 0 60px rgba(236, 72, 153, 0.8)) brightness(1.1);
        opacity: 1;
    }
    25% {
        transform: translateY(-20px) scale(0.8) perspective(1000px) rotateY(15deg);
        filter: drop-shadow(0 0 80px rgba(139, 92, 246, 1)) brightness(1.3) blur(1px);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-30px) scale(0.3) perspective(1000px) rotateY(90deg) rotateX(20deg);
        filter: drop-shadow(0 0 100px rgba(16, 185, 129, 1)) brightness(1.5) blur(3px);
        opacity: 0;
    }
    35% {
        transform: translateY(-30px) scale(0.3) perspective(1000px) rotateY(-90deg) rotateX(-20deg);
        filter: drop-shadow(0 0 100px rgba(236, 72, 153, 1)) brightness(1.5) blur(3px);
        opacity: 0;
    }
    40% {
        transform: translateY(-20px) scale(0.8) perspective(1000px) rotateY(-15deg);
        filter: drop-shadow(0 0 80px rgba(236, 72, 153, 1)) brightness(1.3) blur(1px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) scale(1.1) perspective(1000px) rotateY(0deg);
        filter: drop-shadow(0 0 60px rgba(16, 185, 129, 0.8)) brightness(1.2);
        opacity: 1;
    }
    65% { 
        transform: translateY(-5px) scale(1.03) perspective(1000px) rotateY(0deg);
        filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.8)) brightness(1.05);
        opacity: 1;
    }
}

@keyframes logoPulse {
    0% { 
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8));
    }
    100% { 
        filter: drop-shadow(0 0 60px rgba(236, 72, 153, 0.8));
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #10B981);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    animation: iconFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--icon-index) * 0.1s);
}

.hero-social-icon:nth-child(1) { --icon-index: 0; }
.hero-social-icon:nth-child(2) { --icon-index: 1; }
.hero-social-icon:nth-child(3) { --icon-index: 2; }
.hero-social-icon:nth-child(4) { --icon-index: 3; }
.hero-social-icon:nth-child(5) { --icon-index: 4; }
.hero-social-icon:nth-child(6) { --icon-index: 5; }
.hero-social-icon:nth-child(7) { --icon-index: 6; }

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-8px) rotate(5deg);
    }
}

.hero-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.hero-social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.hero-social-icon:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-5px) scale(1.15) rotate(0deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    animation-play-state: paused;
}

.hero-social-icon[data-platform="spotify"]:hover {
    border-color: #1DB954;
    color: #1DB954;
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

.hero-social-icon[data-platform="instagram"]:hover {
    border-color: #E4405F;
    color: #E4405F;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.hero-social-icon[data-platform="youtube"]:hover {
    border-color: #FF0000;
    color: #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.hero-social-icon[data-platform="tiktok"]:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.hero-social-icon[data-platform="facebook"]:hover {
    border-color: #1877F2;
    color: #1877F2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.hero-social-icon[data-platform="shop"]:hover {
    border-color: #10B981;
    color: #10B981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.hero-social-icon[data-platform="linktree"]:hover {
    border-color: #39E09B;
    color: #39E09B;
    box-shadow: 0 8px 25px rgba(57, 224, 155, 0.4);
}

.hero-social-icon i {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    font-weight: 300;
    letter-spacing: 3px;
    animation: fadeIn 2s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--light-text);
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

/* ===== SECTIONS ===== */
.social-section,
.mailing-section,
.shows-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ===== SOCIAL LINKS ===== */
.social-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--light-text);
    text-decoration: none;
    padding: 30px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.social-link i {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Platform-specific colors */
.social-link[data-platform="spotify"]:hover { border-color: #1DB954; }
.social-link[data-platform="instagram"]:hover { border-color: #E4405F; }
.social-link[data-platform="youtube"]:hover { border-color: #FF0000; }
.social-link[data-platform="tiktok"]:hover { border-color: #000000; }
.social-link[data-platform="facebook"]:hover { border-color: #1877F2; }
.social-link[data-platform="linkedin"]:hover { border-color: #0A66C2; }
.social-link[data-platform="shop"]:hover { border-color: #10B981; }
.social-link[data-platform="linktree"]:hover { border-color: #39E09B; }

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    overflow: hidden;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.partners-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    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);
}

.partners-track {
    display: flex;
    gap: 80px;
    animation: scroll-partners 30s linear infinite;
    width: max-content;
}

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

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

.partner-logo {
    flex-shrink: 0;
    width: 240px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 10px 40px rgba(139, 92, 246, 0.3));
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-logo:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .partners-track {
        gap: 40px;
        animation: scroll-partners 20s linear infinite;
    }
    
    .partner-logo {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
}

/* ===== PRODUCTIONS SECTION ===== */
.productions-section {
    background: var(--darker-bg);
    padding: 100px 0;
    position: relative;
}

.productions-scroll-container {
    position: relative;
    padding: 0 60px;
}

.productions-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.5) rgba(255, 255, 255, 0.05);
}

.productions-wrapper::-webkit-scrollbar {
    height: 8px;
}

.productions-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.productions-wrapper::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 4px;
}

.productions-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

.production-card {
    min-width: 350px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.production-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.production-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.production-media img,
.production-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.production-card:hover .production-media img,
.production-card:hover .production-media video {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.production-card:hover .play-overlay {
    opacity: 0.9;
}

.production-info {
    padding: 25px;
}

.production-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light-text);
}

.production-info p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: var(--light-text);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-btn:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.7);
}

.scroll-btn-left {
    left: 0;
}

.scroll-btn-right {
    right: 0;
}

/* Production Modal */
.production-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.production-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content-wrapper {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--dark-bg);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    z-index: 1001;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1002;
}

.modal-close:hover {
    background: rgba(139, 92, 246, 0.4);
    transform: rotate(90deg);
}

.modal-content {
    padding: 50px;
}

.modal-production-header {
    margin-bottom: 30px;
}

.modal-production-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-production-media {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-production-media img,
.modal-production-media video {
    width: 100%;
    height: auto;
}

.modal-production-details p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.modal-production-details h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-production-details ul {
    list-style: none;
    padding: 0;
}

.modal-production-details li {
    padding: 10px 0;
    color: var(--light-text);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.modal-production-details li:before {
    content: "▸ ";
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== MAILING LIST ===== */
.mailing-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.mailing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.mailing-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mailing-description {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mailing-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 6px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.form-input::placeholder {
    color: var(--gray-text);
}

.form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.submit-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    color: var(--accent-color);
    animation: slideDown 0.5s ease;
}

.success-message.show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

/* ===== SHOWS SECTION ===== */
.shows-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.shows-scroll-wrapper {
    margin-top: 60px;
    position: relative;
}

.shows-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.5) rgba(255, 255, 255, 0.1);
}

.shows-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.shows-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.shows-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.shows-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.8);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.show-card {
    background: rgba(139, 92, 246, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    min-width: 320px;
    flex-shrink: 0;
}

.show-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.show-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.show-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.show-card:hover .show-image-container img {
    transform: scale(1.08);
}

.show-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.show-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.show-content {
    padding: 25px;
}

.show-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-text);
}

.show-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.show-venue,
.show-time {
    color: var(--gray-text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.show-venue i,
.show-time i {
    color: var(--primary-color);
}

.ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticket-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ticket-btn:hover::before {
    width: 300px;
    height: 300px;
}

.ticket-btn span,
.ticket-btn i {
    position: relative;
    z-index: 1;
}

.ticket-btn:hover {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer p {
    color: var(--gray-text);
    margin: 5px 0;
}

/* ===== ANIMATIONS ON SCROLL ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 40px;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .center-logo {
        width: 180px;
        height: 180px;
    }

    .section-title {
        font-size: 2rem;
    }

    .social-links {
        gap: 20px;
    }

    .productions-scroll-container {
        padding: 0 50px;
    }

    .production-card {
        min-width: 280px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-production-header h2 {
        font-size: 2rem;
    }

    .modal-production-media iframe {
        height: 250px;
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.contact-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    animation: fadeIn 0.3s ease;
}

.contact-modal .modal-content-wrapper {
    position: relative;
    background: #000000;
    border-radius: 0;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10001;
}

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

.contact-modal .modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10002;
    font-size: 1.2rem;
}

.contact-modal .modal-close:hover {
    color: rgba(255, 255, 255, 1);
}

.contact-modal .modal-content {
    padding: 80px 60px;
}

.contact-modal .modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    text-align: left;
    letter-spacing: 0.5px;
}

.contact-info {
    display: grid;
    gap: 50px;
}

.contact-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
}

.contact-section:last-child {
    border-bottom: none;
}

.contact-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin: 5px 0;
    font-weight: 300;
}

.contact-section a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin: 5px 0;
    font-weight: 300;
}

.contact-section a:hover {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .contact-modal .modal-content {
        padding: 60px 30px;
    }
    
    .contact-modal .modal-title {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .contact-modal .modal-close {
        top: 20px;
        right: 20px;
    }
    
    .contact-section h3 {
        font-size: 0.75rem;
    }
    
    .contact-section p,
    .contact-section a {
        font-size: 0.9rem;
    }
}

/* ===== POPUP BANNER MODAL ===== */
.popup-banner-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    align-items: center;
    justify-content: center;
}

.popup-banner-modal.active {
    display: flex;
}

.popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.popup-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 20001;
    animation: popupZoomIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes popupZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20002;
    font-size: 1.5rem;
}

.popup-close:hover {
    color: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

.popup-banner-link {
    display: block;
    cursor: default;
}

.popup-banner-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .popup-content-wrapper {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .popup-close {
        top: -40px;
        right: 10px;
        font-size: 1.2rem;
    }
    
    .popup-banner-image {
        border-radius: 4px;
    }
}
