@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-blue: #4a90a4;
    --dark-blue: #2d4a5a;
    --light-blue: #7bb3c7;
    --neon-cyan: #00ffff;
    --dark-bg: #0a0f1a;
    --card-bg: rgba(74, 144, 164, 0.1);
    --text-light: #e0e6ed;
    --text-muted: #a0b0c0;
    --gradient: linear-gradient(135deg, #0a0f1a 0%, #1a2332 50%, #2d4a5a 100%);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--gradient);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent scrolling when lightbox is open */
body.lightbox-open {
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
}

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

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        var(--primary-blue) 2px,
        var(--primary-blue) 4px
    );
    animation: scan 3s linear infinite;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-blue);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: -40px;
    padding-left: 0px;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--light-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-text:hover {
    filter: drop-shadow(0 0 10px var(--neon-cyan));
    text-shadow: 0 0 15px var(--neon-cyan);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--neon-cyan);
}

/* Hero Section */
.hero {
    height: 130vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    margin-bottom: 0;
}

.hero-logo img {
    height: 1000px;
    width: auto;
    max-width: none; /* Prevent width constraints */
    object-fit: contain; /* Maintain aspect ratio */
    filter: brightness(0.4) drop-shadow(0 0 30px var(--neon-cyan));
    animation: float 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(45deg, var(--light-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--neon-cyan); }
    to { text-shadow: 0 0 30px var(--neon-cyan), 0 0 40px var(--neon-cyan); }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #2d4a5a;
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
    border: 2px solid var(--neon-cyan);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--light-blue);
    box-shadow: 0 8px 30px rgba(74, 144, 164, 0.8);
    border-color: var(--neon-cyan);
}

/* Sections */
.section {
    padding: 80px 0;
    margin-top: 0;
}

.section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-blue);
}

.about-text p{
    color: var(--light-blue);
}


.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

/*Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sound-wave {
    width: 80%;
    height: 60px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue), var(--primary-blue));
    position: relative;
    mask-image: 
        radial-gradient(ellipse 8px 25px at 5% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 15px at 12% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 40px at 19% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 8px at 26% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 50px at 33% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 20px at 40% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 35px at 47% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 12px at 54% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 45px at 61% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 18px at 68% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 30px at 75% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 10px at 82% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 25px at 89% 50%, black 0%, transparent 100%),
        radial-gradient(ellipse 8px 15px at 96% 50%, black 0%, transparent 100%);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Shows Section */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.show-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--primary-blue);
    text-align: center;
    transition: all 0.3s ease;
}

.show-card p {
    color: var(--light-blue);
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 164, 0.3);
}

.show-date {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.show-venue {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light-blue);
}

.show-location {
    color: var(--light-blue);
    margin-bottom: 20px;
}

.show-time {
    color: var(--light-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.show-card .show-poster-thumbnail {
    margin: 20px auto !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    max-width: 250px !important;
    width: 250px !important;
    display: block !important;
}

.show-card .show-poster-thumbnail img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transition: transform 0.3s ease;
}

.show-poster-thumbnail:hover img {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--neon-cyan);
    padding: 10px;
    text-align: center;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through */
}

/* Hide mobile text on desktop */
.overlay-text-mobile {
    display: none;
}

/* Show desktop text on desktop */
.overlay-text-desktop {
    display: inline;
}

.show-poster-thumbnail:hover .thumbnail-overlay {
    transform: translateY(0);
}

/* On mobile/touch devices, show overlay by default */
@media (hover: none) and (pointer: coarse) {
    .thumbnail-overlay {
        transform: translateY(0);
        opacity: 0.9;
    }
    
    /* Hide desktop text on mobile */
    .overlay-text-desktop {
        display: none;
    }
    
    /* Show mobile text on mobile */
    .overlay-text-mobile {
        display: inline;
    }
}

.show-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.show-link:hover {
    color: var(--light-blue);
    transform: translateX(5px);
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--primary-blue);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 164, 0.3);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--dark-bg);
}

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

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--neon-cyan);
    padding: 10px;
    text-align: center;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.video-thumbnail:hover .video-overlay {
    transform: translateY(0);
}

/* On mobile/touch devices, show video overlay by default */
@media (hover: none) and (pointer: coarse) {
    .video-overlay {
        transform: translateY(0);
        opacity: 0.9;
    }
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.video-description {
    color: var(--text-muted);
    font-size: 1rem;
}


/* Photos Carousel Section */
.photos-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--primary-blue);
    background: var(--card-bg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.photo-caption {
    background: rgba(10, 15, 26, 0.95);
    width: 100%;
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--primary-blue);
}

.photo-caption p {
    color: var(--light-blue);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 144, 164, 0.2);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 144, 164, 0.3);
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Newsletter Archive Section */
.archive-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.newsletter-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.newsletter-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.newsletter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 164, 0.3);
}

.newsletter-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--neon-cyan);
}

.newsletter-details {
    flex: 1;
}

.newsletter-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--light-blue);
    margin-bottom: 5px;
}

.newsletter-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.newsletter-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.newsletter-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.newsletter-download:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

.newsletter-download svg {
    width: 16px;
    height: 16px;
}

.newsletter-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.newsletter-empty p {
    font-size: 1.1rem;
}

/* Poster Lightbox */
.poster-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.poster-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.poster-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.poster-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border: 3px solid var(--neon-cyan);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

/* Mobile full-screen styling - Target all small screens including iPhone */
@media (max-width: 768px), (max-device-width: 768px) {
    .poster-lightbox {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: -webkit-fill-available !important; /* iOS Safari fix */
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .poster-lightbox-content {
        max-width: 100% !important;
        max-height: 100% !important;
        width: 100vw !important;
        height: 100vh !important;
        height: -webkit-fill-available !important; /* iOS Safari fix */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    .poster-lightbox-content img {
        max-width: 100vw !important;
        max-height: 100vh !important;
        max-height: -webkit-fill-available !important; /* iOS Safari fix */
        width: 100vw !important;
        height: auto !important;
        border-radius: 0 !important;
        border: none !important;
        object-fit: contain !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .poster-close {
        top: 10px !important;
        right: 10px !important;
        background: rgba(74, 144, 164, 0.9) !important;
        z-index: 10 !important;
        position: fixed !important;
    }
}

.poster-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary-blue);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.poster-close:hover {
    background: var(--light-blue);
    color: white;
    transform: rotate(90deg);
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.video-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.video-lightbox-content video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary-blue);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: var(--light-blue);
    color: white;
    transform: rotate(90deg);
}

/* Mobile video lightbox adjustments */
@media (max-width: 768px), (max-device-width: 768px) {
    .video-lightbox-content {
        max-width: 100%;
        max-height: 100vh;
        padding: 20px;
    }
    
    .video-lightbox-content video {
        border-radius: 5px;
    }
    
    .video-close {
        top: 10px;
        right: 10px;
        background: rgba(74, 144, 164, 0.9);
        z-index: 10;
        position: fixed;
    }
}

/* Newsletter Section */
.newsletter {
    background: var(--card-bg);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--primary-blue);
}

.newsletter h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--light-blue);
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-blue);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--primary-blue);
    border-radius: 25px;
    background: rgba(74, 144, 164, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

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

.newsletter-form button {
    padding: 15px 30px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    margin-bottom: 30px;
    text-align: center;
}

.contact-text p {
    color: var(--light-blue);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-email {
    margin-top: 40px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--primary-blue);
    text-align: center;
}

.contact-email p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.email-link {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    filter: drop-shadow(0 0 8px var(--neon-cyan));
    transform: translateY(-2px);
}


/* Mailchimp Form Styling */
#mc_embed_signup {
    width: 100%;
}

#mc_embed_signup .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

#mc_embed_signup .email-input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--primary-blue);
    border-radius: 25px;
    background: rgba(74, 144, 164, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

#mc_embed_signup .email-input::placeholder {
    color: var(--text-muted);
}

#mc_embed_signup .email-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

#mc_embed_signup .subscribe-btn {
    padding: 15px 30px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

#mc_embed_signup .subscribe-btn:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

#mc_embed_signup div.mce_inline_error {
    background-color: var(--card-bg) !important;
    color: var(--neon-cyan) !important;
    border: 1px solid var(--neon-cyan) !important;
}

#mc_embed_signup div.response {
    color: var(--text-light) !important;
}

/* Thank You Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    background: var(--gradient);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--neon-cyan);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: white;
    background: var(--neon-cyan);
    border-radius: 50%;
}

.lightbox-title {
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

.lightbox-message {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.lightbox-button {
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--neon-cyan);
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.lightbox-button:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--primary-blue);
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(74, 144, 164, 0.2);
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: var(--primary-blue);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

footer .social-links svg {
    width: 24px;
    height: 24px;
    fill: var(--neon-cyan);
    shape-rendering: geometricPrecision;
    filter: drop-shadow(0 0 6px var(--neon-cyan));
    transition: all 0.3s ease;
}

footer .social-links a:hover svg {
    fill: #ffffff;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

footer p {
    color: var(--text-muted);
    margin-top: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Remove the display: none rule for nav-links */
    
    nav .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .logo {
        margin-left: 0;
        padding-left: 0;
    }
    
    .logo-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-logo img {
        height: 400px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter {
        padding: 40px 20px;
    }
    
    #mc_embed_signup .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    #mc_embed_signup .subscribe-btn {
        width: 100%;
    }
    
    .lightbox-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .lightbox-title {
        font-size: 1.5rem;
    }
    
    .lightbox-message {
        font-size: 1.1rem;
    }
    
    .show-card .show-poster-thumbnail {
        max-width: 200px !important;
        width: 200px !important;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-slide img {
        max-height: 400px;
    }
    
    .photo-caption {
        padding: 15px;
    }
    
    .photo-caption p {
        font-size: 0.95rem;
    }
    
    .newsletter-archive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-icon {
        width: 40px;
        height: 40px;
    }
}
/* ============================================
   YOUTUBE LIGHTBOX
   ============================================ */
.youtube-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.youtube-lightbox.active {
    display: flex;
}

.youtube-lightbox-content {
    position: relative;
    width: 90vw;
    max-width: 960px;
    aspect-ratio: 16 / 9;
}

.youtube-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.youtube-close:hover {
    color: #00ffff;
}

#youtube-iframe {
    width: 100%;
    height: 100%;
}