/* ===========================================
   🔥 SITE10 - DEEP BLUE BRUTAL 🔥
   VERSION: 3.8-DROPDOWN-MENU
   CACHE-BUSTER-V3.8: 92847
   
   v3.8 MOBILE DROPDOWN MENU:
   ✓ Menu drops down from top (not slides from side)
   ✓ Limited to menu item width (not full screen)
   ✓ Semi-transparent background (shows image behind)
   ✓ Compact, elegant dropdown style
   
   v3.7 MOBILE ONE-LINE FIX:
   ✓ Mobile nav logo: 1.45rem (fits on one line, Beauty Glitch still works)
   ✓ Desktop: 1.6-2rem (perfect)
   ✓ Letter-spacing: 0.5px on mobile (tighter fit)
   =========================================== */


:root {
    --deep-blue: #1a4d8f;
    --deep-blue-dark: #051a2e;
    --steel-blue: #2d5fa8;
    --rust: #8b4513;
    --black: #000000;
    --near-black: #0a0a0a;
    --dirty-white: #d4d4d4;
    --toxic-green: #39ff14;
    --cyan: #00ffff;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: var(--black);
    color: var(--dirty-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===========================================
   HEAVY FILM GRAIN - ALWAYS ON
   =========================================== */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuNSIvPjwvc3ZnPg==');
    opacity: 0.25;
    animation: grain-chaos 0.2s steps(10) infinite;
    mix-blend-mode: overlay;
}

@keyframes grain-chaos {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-5%, -5%) rotate(1deg); }
    20% { transform: translate(5%, -5%) rotate(-1deg); }
    30% { transform: translate(-5%, 5%) rotate(1deg); }
    40% { transform: translate(5%, 5%) rotate(-1deg); }
    50% { transform: translate(-3%, 3%) rotate(0.5deg); }
    60% { transform: translate(3%, -3%) rotate(-0.5deg); }
    70% { transform: translate(-4%, 4%) rotate(1deg); }
    80% { transform: translate(4%, -4%) rotate(-1deg); }
    90% { transform: translate(-2%, 2%) rotate(0.5deg); }
}

/* ===========================================
   SCANLINES - HEAVIER
   =========================================== */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.3) 3px
    );
    animation: scanline-brutal 6s linear infinite;
    mix-blend-mode: multiply;
}

@keyframes scanline-brutal {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* ===========================================
   CHROMATIC ABERRATION UTILITY
   =========================================== */
.chromatic {
    position: relative;
}

.chromatic::before,
.chromatic::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

.chromatic::before {
    color: var(--deep-blue);
    transform: translate(-3px, 0);
    animation: glitch-r 4s infinite;
}

.chromatic::after {
    color: var(--cyan);
    transform: translate(3px, 0);
    animation: glitch-b 4s infinite;
}

@keyframes glitch-r {
    0%, 100% { transform: translate(-3px, 0); }
    10% { transform: translate(-5px, -2px); }
    20% { transform: translate(-2px, 2px); }
    30% { transform: translate(-4px, -1px); }
    40% { transform: translate(-3px, 1px); }
    50% { transform: translate(-5px, 0); }
    60% { transform: translate(-2px, -2px); }
    70% { transform: translate(-4px, 2px); }
    80% { transform: translate(-3px, -1px); }
    90% { transform: translate(-5px, 1px); }
}

@keyframes glitch-b {
    0%, 100% { transform: translate(3px, 0); }
    10% { transform: translate(5px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(4px, 1px); }
    40% { transform: translate(3px, -1px); }
    50% { transform: translate(5px, 0); }
    60% { transform: translate(2px, 2px); }
    70% { transform: translate(4px, -2px); }
    80% { transform: translate(3px, 1px); }
    90% { transform: translate(5px, -1px); }
}

/* ===========================================
/* ===========================================
   NAVIGATION - TONED DOWN  
   =========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10,37,64,0.98) 0%, rgba(0,0,0,0.95) 100%);
    border-bottom: 3px solid var(--deep-blue);
    box-shadow: 
        0 0 20px var(--deep-blue),
        0 5px 30px rgba(0,0,0,0.9);
    backdrop-filter: blur(15px) saturate(150%);
}

.nav.scrolled {
    box-shadow: 0 0 30px var(--steel-blue), 0 5px 30px rgba(0,0,0,0.9);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Beauty Glitch', 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(1.6rem, 5vw, 2rem);
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: clamp(1px, 1vw, 4px);
    text-transform: uppercase;
    text-shadow: 
        2px 2px 0 var(--deep-blue-dark),
        0 0 20px var(--deep-blue);
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
}

.nav-logo:hover {
    color: var(--steel-blue);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--dirty-white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deep-blue);
    box-shadow: 0 0 10px var(--deep-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--steel-blue);
    text-shadow: 0 0 15px var(--deep-blue);
}

.nav-link:hover::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
}


   HERO - MAXIMUM DESTRUCTION
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg-image {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: 
        contrast(180%) 
        brightness(60%) 
        saturate(140%)
        sepia(20%)
        hue-rotate(-10deg);
    animation: hero-chaos 25s ease-in-out infinite alternate;
}

@keyframes hero-chaos {
    0% { 
        transform: scale(1.2) rotate(0deg);
        filter: contrast(180%) brightness(60%) saturate(140%) sepia(20%);
    }
    25% {
        transform: scale(1.25) rotate(-1deg);
        filter: contrast(200%) brightness(50%) saturate(160%) sepia(30%);
    }
    50% { 
        transform: scale(1.3) rotate(1deg);
        filter: contrast(190%) brightness(55%) saturate(150%) sepia(25%);
    }
    75% {
        transform: scale(1.25) rotate(-0.5deg);
        filter: contrast(180%) brightness(58%) saturate(145%) sepia(22%);
    }
    100% { 
        transform: scale(1.2) rotate(0deg);
        filter: contrast(180%) brightness(60%) saturate(140%) sepia(20%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.8) 100%),
        linear-gradient(180deg, rgba(5,26,46,0.4) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.95) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(26,77,143,0.1) 2px, rgba(26,77,143,0.1) 4px);
    mix-blend-mode: multiply;
}

/* Torn edge effect on hero */
.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 4;
    background: linear-gradient(to bottom, transparent, var(--black));
    clip-path: polygon(
        0% 0%, 2% 100%, 4% 0%, 6% 100%, 8% 0%, 10% 100%, 
        12% 0%, 14% 100%, 16% 0%, 18% 100%, 20% 0%, 22% 100%,
        24% 0%, 26% 100%, 28% 0%, 30% 100%, 32% 0%, 34% 100%,
        36% 0%, 38% 100%, 40% 0%, 42% 100%, 44% 0%, 46% 100%,
        48% 0%, 50% 100%, 52% 0%, 54% 100%, 56% 0%, 58% 100%,
        60% 0%, 62% 100%, 64% 0%, 66% 100%, 68% 0%, 70% 100%,
        72% 0%, 74% 100%, 76% 0%, 78% 100%, 80% 0%, 82% 100%,
        84% 0%, 86% 100%, 88% 0%, 90% 100%, 92% 0%, 94% 100%,
        96% 0%, 98% 100%, 100% 0%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 3rem;
    margin: 0 auto;
    animation: hero-entrance 2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes hero-entrance {
    0% { 
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-title-main {
    display: block;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: 900;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
    width: 100%;
    text-shadow: 
        4px 4px 0 var(--deep-blue-dark),
        8px 8px 0 var(--black),
        -2px -2px 0 var(--deep-blue),
        0 0 40px var(--deep-blue),
        0 0 80px var(--steel-blue);
    filter: 
        drop-shadow(0 0 30px var(--deep-blue))
        drop-shadow(0 0 60px rgba(26,77,143,0.8));
    animation: title-brutal 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes title-brutal {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        text-shadow: 
            4px 4px 0 var(--deep-blue-dark),
            8px 8px 0 var(--black),
            -2px -2px 0 var(--deep-blue),
            0 0 40px var(--deep-blue);
    }
    25% {
        transform: scale(1.02) rotate(-0.5deg);
        text-shadow: 
            5px 5px 0 var(--deep-blue-dark),
            10px 10px 0 var(--black),
            -3px -3px 0 var(--deep-blue),
            0 0 60px var(--steel-blue);
    }
    50% { 
        transform: scale(1.05) rotate(0.5deg);
        text-shadow: 
            6px 6px 0 var(--deep-blue-dark),
            12px 12px 0 var(--black),
            -4px -4px 0 var(--steel-blue),
            0 0 80px var(--steel-blue);
    }
    75% {
        transform: scale(1.02) rotate(-0.5deg);
        text-shadow: 
            5px 5px 0 var(--deep-blue-dark),
            10px 10px 0 var(--black),
            -3px -3px 0 var(--deep-blue),
            0 0 60px var(--steel-blue);
    }
}

/* Glitch overlay on title */
.hero-title-main::before {
    content: 'HUMMA KAVULA';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--deep-blue);
    z-index: -1;
    animation: title-glitch 5s steps(10) infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.hero-title-main::after {
    content: 'HUMMA KAVULA';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--cyan);
    z-index: -2;
    animation: title-glitch 3s steps(10) infinite reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes title-glitch {
    0% { transform: translate(0, 0); opacity: 1; }
    10% { transform: translate(-5px, 2px); opacity: 0.8; }
    20% { transform: translate(5px, -2px); opacity: 1; }
    30% { transform: translate(-3px, 3px); opacity: 0.9; }
    40% { transform: translate(4px, -3px); opacity: 1; }
    50% { transform: translate(-6px, 1px); opacity: 0.85; }
    60% { transform: translate(3px, -4px); opacity: 1; }
    70% { transform: translate(-4px, 4px); opacity: 0.9; }
    80% { transform: translate(6px, -1px); opacity: 1; }
    90% { transform: translate(-2px, 3px); opacity: 0.95; }
    100% { transform: translate(0, 0); opacity: 1; }
}

.hero-title-sub {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--steel-blue);
    margin-top: 1.5rem;
    text-shadow: 
        0 0 20px var(--deep-blue),
        2px 2px 0 var(--black),
        0 0 40px rgba(26,77,143,0.5);
    animation: subtitle-flicker 6s ease-in-out infinite;
}

@keyframes subtitle-flicker {
    0%, 100% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0.8; }
    55% { opacity: 1; }
    60% { opacity: 0.9; }
    65% { opacity: 1; }
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    color: var(--dirty-white);
    margin: 2.5rem 0 3.5rem;
    letter-spacing: 2px;
    line-height: 2;
    text-shadow: 
        3px 3px 8px rgba(0,0,0,0.95),
        0 0 20px rgba(26,77,143,0.3);
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-dark) 100%);
    color: white;
    border: 3px solid var(--deep-blue-dark);
    box-shadow: 
        0 0 30px var(--deep-blue),
        0 8px 20px rgba(0,0,0,0.8),
        inset 0 -3px 0 rgba(0,0,0,0.5);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 50px var(--steel-blue),
        0 12px 30px rgba(0,0,0,0.9),
        inset 0 -3px 0 rgba(0,0,0,0.7);
    animation: btn-shake 0.4s ease-in-out infinite;
}

@keyframes btn-shake {
    0%, 100% { transform: translateY(-5px) scale(1.05) rotate(0deg); }
    25% { transform: translateY(-5px) scale(1.05) rotate(-2deg); }
    75% { transform: translateY(-5px) scale(1.05) rotate(2deg); }
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: white;
    border: 3px solid var(--deep-blue);
    box-shadow: 
        0 0 25px rgba(26,77,143,0.5),
        0 5px 15px rgba(0,0,0,0.7),
        inset 0 0 20px rgba(26,77,143,0.1);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: linear-gradient(135deg, rgba(26,77,143,0.3), rgba(5,26,46,0.5));
    border-color: var(--steel-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 40px var(--steel-blue),
        0 10px 25px rgba(0,0,0,0.9),
        inset 0 0 40px rgba(26,77,143,0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--deep-blue);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: scroll-pulse 2s ease-in-out infinite;
    text-shadow: 0 0 15px var(--deep-blue);
}

@keyframes scroll-pulse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0.6; }
}

.hero-scroll-line {
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, var(--deep-blue) 0%, transparent 100%);
    box-shadow: 0 0 15px var(--deep-blue);
}

/* ===========================================
   SECTION UTILITIES - BRUTAL
   =========================================== */
section {
    position: relative;
    padding: 7rem 2rem;
    overflow: hidden;
}

/* Torn edges between sections */
section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 30px;
    z-index: 3;
    background: linear-gradient(to top, transparent, var(--black));
    clip-path: polygon(
        0% 100%, 2% 0%, 4% 100%, 6% 0%, 8% 100%, 10% 0%, 
        12% 100%, 14% 0%, 16% 100%, 18% 0%, 20% 100%, 22% 0%,
        24% 100%, 26% 0%, 28% 100%, 30% 0%, 32% 100%, 34% 0%,
        36% 100%, 38% 0%, 40% 100%, 42% 0%, 44% 100%, 46% 0%,
        48% 100%, 50% 0%, 52% 100%, 54% 0%, 56% 100%, 58% 0%,
        60% 100%, 62% 0%, 64% 100%, 66% 0%, 68% 100%, 70% 0%,
        72% 100%, 74% 0%, 76% 100%, 78% 0%, 80% 100%, 82% 0%,
        84% 100%, 86% 0%, 88% 100%, 90% 0%, 92% 100%, 94% 0%,
        96% 100%, 98% 0%, 100% 100%
    );
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--steel-blue);
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(5,26,46,0.3);
    border: 2px solid var(--deep-blue);
    border-left: 6px solid var(--steel-blue);
    box-shadow: 
        0 0 30px rgba(26,77,143,0.4),
        inset 0 0 20px rgba(26,77,143,0.2);
    transform: skewX(-5deg);
    position: relative;
}

.section-label span {
    display: inline-block;
    transform: skewX(5deg);
}

.section-title {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(1.75rem, 5.5vw, 4rem);
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 2.5rem;
    position: relative;
    text-shadow: 
        4px 4px 0 var(--deep-blue-dark),
        8px 8px 0 var(--black),
        0 0 40px rgba(26,77,143,0.6);
    animation: section-title-breathe 5s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Section title glitch effect on hover */
.section-title::before,
.section-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.section-title::before {
    color: var(--deep-blue);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.section-title::after {
    color: var(--cyan);
    z-index: -2;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

.section-title:hover {
    transform: scale(1.02);
    text-shadow: 
        5px 5px 0 var(--deep-blue-dark),
        10px 10px 0 var(--black),
        0 0 60px var(--steel-blue);
}

.section-title:hover::before {
    opacity: 1;
    animation: section-glitch-top 0.3s steps(5) infinite;
}

.section-title:hover::after {
    opacity: 1;
    animation: section-glitch-bottom 0.3s steps(5) infinite reverse;
}

@keyframes section-glitch-top {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-4px, 2px); }
    40% { transform: translate(4px, -2px); }
    60% { transform: translate(-3px, -2px); }
    80% { transform: translate(3px, 2px); }
    100% { transform: translate(0, 0); }
}

@keyframes section-glitch-bottom {
    0% { transform: translate(0, 0); }
    20% { transform: translate(4px, -2px); }
    40% { transform: translate(-4px, 2px); }
    60% { transform: translate(3px, 2px); }
    80% { transform: translate(-3px, -2px); }
    100% { transform: translate(0, 0); }
}

@keyframes section-title-breathe {
    0%, 100% { 
        text-shadow: 
            4px 4px 0 var(--deep-blue-dark),
            8px 8px 0 var(--black),
            0 0 40px rgba(26,77,143,0.6);
    }
    50% { 
        text-shadow: 
            5px 5px 0 var(--deep-blue-dark),
            10px 10px 0 var(--black),
            0 0 60px rgba(26,77,143,1);
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, var(--deep-blue) 0%, var(--steel-blue) 50%, transparent 100%);
    margin-top: 1.5rem;
    box-shadow: 0 0 20px var(--deep-blue);
    animation: line-pulse 3s ease-in-out infinite;
}

@keyframes line-pulse {
    0%, 100% { width: 150px; box-shadow: 0 0 20px var(--deep-blue); }
    50% { width: 200px; box-shadow: 0 0 40px var(--steel-blue); }
}

/* Continue with all the rest of the styles from the original file... */

/* ===========================================
   ABOUT SECTION - DISTRESSED
   =========================================== */
.about {
    position: relative;
    background: var(--near-black);
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
    filter: 
        grayscale(100%) 
        contrast(200%) 
        brightness(40%);
    animation: about-distort 15s ease-in-out infinite alternate;
}

@keyframes about-distort {
    0% { 
        filter: grayscale(100%) contrast(200%) brightness(40%);
        transform: scale(1.1);
    }
    50% {
        filter: grayscale(80%) contrast(220%) brightness(35%);
        transform: scale(1.15) rotate(-1deg);
    }
    100% { 
        filter: grayscale(100%) contrast(200%) brightness(40%);
        transform: scale(1.1);
    }
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(0,0,0,0.98) 0%, 
            rgba(10,0,0,0.90) 50%, 
            rgba(5,26,46,0.3) 100%
        ),
        radial-gradient(ellipse at 80% 50%, transparent 0%, rgba(0,0,0,0.9) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(26,77,143,0.05) 15px,
            rgba(26,77,143,0.05) 30px
        );
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--dirty-white);
}

.about-text p {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}

.about-text p:first-of-type::first-letter {
    font-size: 5rem;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    float: left;
    line-height: 0.9;
    margin: 0.2rem 0.3rem 0 0;
    color: var(--deep-blue);
    text-shadow: 
        3px 3px 0 var(--deep-blue-dark),
        0 0 30px var(--deep-blue);
    animation: drop-cap-glow 4s ease-in-out infinite;
}

@keyframes drop-cap-glow {
    0%, 100% { 
        text-shadow: 3px 3px 0 var(--deep-blue-dark), 0 0 30px var(--deep-blue);
    }
    50% { 
        text-shadow: 4px 4px 0 var(--deep-blue-dark), 0 0 50px var(--steel-blue);
    }
}

.about-current {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--steel-blue);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(5,26,46,0.3), rgba(26,77,143,0.2));
    border: 2px solid var(--deep-blue);
    border-left: 8px solid var(--steel-blue);
    box-shadow: 
        0 0 30px rgba(26,77,143,0.4),
        inset 0 0 30px rgba(26,77,143,0.1);
    margin-top: 2rem !important;
    position: relative;
    transform: skewX(-2deg);
}

.about-current::before {
    content: '⚠';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--steel-blue);
    animation: warning-pulse 1.5s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.2); }
}

.about-image-featured {
    position: relative;
    border: 5px solid var(--deep-blue);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.9),
        0 0 40px rgba(26,77,143,0.6),
        inset 0 0 30px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: rotate(-2deg);
    transition: all 0.5s ease;
}

.about-image-featured::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 5px,
            rgba(26,77,143,0.1) 5px,
            rgba(26,77,143,0.1) 10px
        );
    z-index: 2;
    pointer-events: none;
}

.about-image-featured:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0,0,0,1),
        0 0 60px var(--steel-blue),
        inset 0 0 40px rgba(26,77,143,0.3);
    animation: image-glitch 0.3s steps(5);
}

@keyframes image-glitch {
    0% { transform: rotate(0deg) scale(1.05) translate(0, 0); }
    20% { transform: rotate(0deg) scale(1.05) translate(-5px, 5px); }
    40% { transform: rotate(0deg) scale(1.05) translate(5px, -5px); }
    60% { transform: rotate(0deg) scale(1.05) translate(-5px, -5px); }
    80% { transform: rotate(0deg) scale(1.05) translate(5px, 5px); }
    100% { transform: rotate(0deg) scale(1.05) translate(0, 0); }
}

.about-image-featured img {
    width: 100%;
    display: block;
    transition: all 0.6s ease;
    filter: 
        contrast(130%) 
        saturate(120%);
}

.about-image-featured:hover img {
    transform: scale(1.1);
    filter: 
        contrast(160%) 
        saturate(150%)
        brightness(110%);
}

/* Due to length, I'll need to continue in another message with the rest of the styles... */
/* I'll include the CRITICAL mobile menu dropdown changes in the @media section */

/* ===========================================
   LIVE/TOUR SECTION - AGGRESSIVE
   =========================================== */
.live {
    background: var(--near-black);
    text-align: center;
}

/* Tour year headings (2026 / 2025) - FIX for grid layout */
.tour-year-label {
  display: inline-block;        /* keep section-label look */
  grid-column: 1 / -1;          /* span full width of the grid */
  justify-self: start;          /* align left inside grid */
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.tour-year-label:first-of-type {
  margin-top: 0;
}

/* Let tour-date cards participate in the grid; wrapper should not */
.tour-year-group {
  display: contents;
}



.tour-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.tour-date {
    background: linear-gradient(135deg, rgba(10,0,0,0.9), rgba(0,0,0,0.8));
    padding: 2.5rem;
    border: 3px solid var(--deep-blue-dark);
    border-left: 8px solid var(--deep-blue);
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.9),
        0 0 30px rgba(26,77,143,0.3),
        inset 0 0 40px rgba(0,0,0,0.6);
    transform-style: preserve-3d;
}

.tour-date:not(.tour-date-poster)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 12px,
            rgba(26,77,143,0.08) 12px,
            rgba(26,77,143,0.08) 24px
        );
    pointer-events: none;
    z-index: 0;
}

.tour-date:not(.tour-date-poster)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26,77,143,0.3));
    transition: width 0.4s ease;
    z-index: 0;
}

.tour-date:hover {
    transform: translateY(-12px) scale(1.03) rotate(-1deg);
    border-color: var(--deep-blue);
    border-left-width: 15px;
    border-left-color: var(--steel-blue);
    box-shadow: 
        0 20px 50px rgba(0,0,0,1),
        0 0 60px rgba(26,77,143,0.7),
        inset 0 0 60px rgba(26,77,143,0.2);
    animation: tour-shake 0.5s ease-in-out;
}

@keyframes tour-shake {
    0%, 100% { transform: translateY(-12px) scale(1.03) rotate(-1deg); }
    25% { transform: translateY(-12px) scale(1.03) rotate(0deg); }
    50% { transform: translateY(-12px) scale(1.03) rotate(-2deg); }
    75% { transform: translateY(-12px) scale(1.03) rotate(1deg); }
}

.tour-date:hover::after {
    width: 100%;
}

.tour-date-info {
    position: relative;
    z-index: 1;
}

.tour-date-num {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 5rem;
    color: var(--deep-blue);
    line-height: 0.9;
    margin-bottom: 0.5rem;
    text-shadow: 
        4px 4px 0 var(--deep-blue-dark),
        0 0 40px var(--deep-blue),
        0 0 80px rgba(26,77,143,0.5);
    position: relative;
    display: inline-block;
}

.tour-date-num::after {
    content: attr(data-day);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--steel-blue);
    z-index: -1;
    transform: translate(3px, 3px);
    opacity: 0.5;
}

.tour-month,
.tour-date-day {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--dirty-white);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tour-venue h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 var(--deep-blue-dark);
    position: relative;
    z-index: 1;
}

.tour-venue p {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tour-details {
    position: relative;
    z-index: 1;
}

.tour-time {
    display: inline-block;
    margin-right: 1rem;
}

.btn-sm {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
}

/* Poster-based tour date cards */
.tour-date-poster {
    background: transparent;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-date-poster .tour-poster-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 5px solid var(--deep-blue-dark);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.9),
        0 0 30px rgba(26,77,143,0.3);
    transition: all 0.4s ease;
    position: relative;
}

.tour-date-poster .tour-poster-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 12px,
            rgba(26,77,143,0.08) 12px,
            rgba(26,77,143,0.08) 24px
        );
    pointer-events: none;
    z-index: 1;
}

.tour-date-poster .tour-poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    filter: contrast(110%) saturate(110%);
}

.tour-date-poster .tour-poster-image:hover {
    border-color: var(--deep-blue);
    border-width: 6px;
    box-shadow: 
        0 15px 40px rgba(0,0,0,1),
        0 0 50px rgba(26,77,143,0.6);
}

.tour-date-poster .tour-poster-image:hover img {
    transform: scale(1.02);
    filter: contrast(120%) saturate(120%) brightness(102%);
}

.tour-date-poster .tour-poster-details {
    background: linear-gradient(135deg, rgba(10,0,0,0.9), rgba(0,0,0,0.8));
    padding: 2rem;
    border: 3px solid var(--deep-blue-dark);
    border-left: 8px solid var(--deep-blue);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.9),
        0 0 30px rgba(26,77,143,0.3),
        inset 0 0 40px rgba(0,0,0,0.6);
    position: relative;
}

/* Removed pseudo-element overlay that was blocking button clicks */

.tour-date-poster .tour-venue h3 {
    margin-bottom: 0.5rem;
}

.tour-date-poster .tour-venue p {
    margin-bottom: 0.25rem;
}

.tour-date-poster .tour-show-date {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.tour-date-poster .tour-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.tour-date-poster:hover .tour-poster-details {
    border-color: var(--deep-blue);
    border-left-width: 12px;
    border-left-color: var(--steel-blue);
}

.live-cta {
    margin-top: 5rem;
}

.live-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--steel-blue);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.live-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* ===========================================
   PHOTOS GALLERY - DESTRUCTION
   =========================================== */
.photos {
    background: var(--near-black);
    border-top: 5px solid var(--deep-blue);
    border-bottom: 5px solid var(--deep-blue);
}

.container-fluid {
    max-width: 100%;
    padding: 0 2rem;
}

.photos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.photos-credit {
    font-size: 0.95rem;
    color: var(--dirty-white);
    font-style: italic;
    margin-top: 1rem;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 5px solid var(--deep-blue-dark);
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.9),
        0 0 20px rgba(26,77,143,0.3);
    background: var(--black);
    transform-style: preserve-3d;
}

.photo-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, 
        var(--deep-blue) 0%, 
        transparent 40%, 
        transparent 60%, 
        var(--deep-blue) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.photo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(26,77,143,0.1) 3px,
            rgba(26,77,143,0.1) 6px
        );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.photo-item:hover {
    transform: scale(1.08) rotate(2deg);
    border-color: var(--deep-blue);
    border-width: 8px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,1),
        0 0 50px var(--steel-blue);
    animation: photo-glitch 0.6s steps(8);
}

@keyframes photo-glitch {
    0% { transform: scale(1.08) rotate(2deg) translate(0, 0); }
    14% { transform: scale(1.08) rotate(2deg) translate(-8px, 8px); }
    28% { transform: scale(1.08) rotate(2deg) translate(8px, -8px); }
    42% { transform: scale(1.08) rotate(2deg) translate(-8px, -8px); }
    57% { transform: scale(1.08) rotate(2deg) translate(8px, 8px); }
    71% { transform: scale(1.08) rotate(2deg) translate(-4px, 4px); }
    85% { transform: scale(1.08) rotate(2deg) translate(4px, -4px); }
    100% { transform: scale(1.08) rotate(2deg) translate(0, 0); }
}

.photo-item:hover::before {
    opacity: 1;
    animation: border-rotate 2s linear infinite;
}

@keyframes border-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.photo-item:hover::after {
    opacity: 1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: 
        grayscale(60%) 
        contrast(120%) 
        saturate(70%);
}

.photo-item:hover img {
    transform: scale(1.2) rotate(-2deg);
    filter: 
        grayscale(0%) 
        contrast(150%) 
        saturate(140%)
        brightness(105%);
}

/* ===========================================
   CONTACT SECTION - DARK & BRUTAL
   =========================================== */
.contact {
    position: relative;
    background: var(--black);
    text-align: center;
}

.contact-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    filter: 
        grayscale(100%) 
        contrast(180%) 
        brightness(30%);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(0,0,0,0.97) 0%, 
            rgba(10,0,0,0.92) 50%, 
            rgba(0,0,0,0.99) 100%
        ),
        radial-gradient(ellipse at center,
            rgba(5,26,46,0.2) 0%,
            transparent 70%
        );
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    text-align: left;
    margin-top: 4rem;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(20,0,0,0.9), rgba(10,0,0,0.8));
    padding: 3.5rem;
    border: 3px solid var(--deep-blue-dark);
    border-left: 10px solid var(--deep-blue);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.95),
        0 0 40px rgba(26,77,143,0.3),
        inset 0 0 50px rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
}

.contact-form-wrapper h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 var(--deep-blue-dark), 0 0 30px var(--deep-blue);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0,0,0,0.7);
    border: 2px solid var(--deep-blue-dark);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 4px 15px rgba(0,0,0,0.8),
        0 0 15px rgba(26,77,143,0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-blue);
    background: rgba(0,0,0,0.9);
    box-shadow: 
        inset 0 4px 15px rgba(0,0,0,0.9),
        0 0 30px rgba(26,77,143,0.4);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info-block {
    margin-bottom: 3rem;
}

.contact-info-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--steel-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-info-block a {
    color: var(--deep-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-block a:hover {
    color: var(--steel-blue);
}

.mailing-list-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mailing-list-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.7);
    border: 2px solid var(--deep-blue-dark);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.mailing-list-form button {
    padding: 1rem 2rem;
}

.mailing-list-note,
.epk-note {
    font-size: 0.85rem;
    color: var(--dirty-white);
    opacity: 0.7;
    margin-top: 0.8rem;
}

/* ===========================================
   FOOTER - BRUTAL
   =========================================== */
.footer {
    background: var(--black);
    border-top: 5px solid var(--deep-blue);
    padding: 5rem 2rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 
        0 -10px 50px rgba(0,0,0,1),
        inset 0 2px 20px rgba(26,77,143,0.4);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(26,77,143,0.03) 3px,
            rgba(26,77,143,0.03) 6px
        );
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    text-align: left;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 
        3px 3px 0 var(--deep-blue-dark),
        0 0 30px var(--deep-blue);
}

.footer-brand p {
    font-size: 1rem;
    color: var(--dirty-white);
    line-height: 1.8;
}

.footer-links {
    text-align: left;
}

.footer-links h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--dirty-white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--steel-blue);
    text-shadow: 0 0 15px var(--deep-blue);
    padding-left: 5px;
}

.footer-social h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(5,26,46,0.3), rgba(26,77,143,0.2));
    border: 3px solid var(--deep-blue-dark);
    color: var(--deep-blue);
    transition: all 0.4s ease;
    box-shadow: 
        0 0 20px rgba(26,77,143,0.3),
        inset 0 0 15px rgba(0,0,0,0.5);
}

.social-icons a:hover {
    background: linear-gradient(135deg, rgba(26,77,143,0.5), rgba(5,26,46,0.4));
    border-color: var(--steel-blue);
    color: white;
    transform: translateY(-8px) rotate(10deg) scale(1.15);
    box-shadow: 
        0 15px 40px rgba(26,77,143,0.6),
        inset 0 0 30px rgba(26,77,143,0.3);
    animation: social-shake 0.5s ease-in-out;
}

@keyframes social-shake {
    0%, 100% { transform: translateY(-8px) rotate(10deg) scale(1.15); }
    25% { transform: translateY(-8px) rotate(15deg) scale(1.15); }
    75% { transform: translateY(-8px) rotate(5deg) scale(1.15); }
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 3px solid var(--deep-blue-dark);
    color: var(--dirty-white);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-credits {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===========================================
   MUSIC SECTION - STREAMING LINKS FIX
   =========================================== */
.music {
    background: var(--near-black);
    border-top: 5px solid var(--deep-blue-dark);
    border-bottom: 5px solid var(--deep-blue-dark);
    position: relative;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(26,77,143,0.03) 60px,
            rgba(26,77,143,0.03) 61px
        );
    pointer-events: none;
    z-index: 1;
}

.music-player {
    max-width: 900px;
    margin: 0 auto 3rem;
    border: 4px solid var(--deep-blue);
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.9),
        0 0 40px rgba(26,77,143,0.4);
}

.streaming-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: linear-gradient(135deg, rgba(5,26,46,0.3), rgba(26,77,143,0.2));
    border: 2px solid var(--deep-blue-dark);
    color: var(--dirty-white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.8),
        0 0 20px rgba(26,77,143,0.2),
        inset 0 0 15px rgba(0,0,0,0.4);
}

.streaming-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.streaming-link:hover {
    background: linear-gradient(135deg, rgba(26,77,143,0.5), rgba(5,26,46,0.4));
    border-color: var(--deep-blue);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.9),
        0 0 35px rgba(26,77,143,0.5),
        inset 0 0 25px rgba(26,77,143,0.2);
}

.streaming-link:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.music-teaser {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(10,0,0,0.9), rgba(0,0,0,0.8));
    border: 3px solid var(--deep-blue-dark);
    border-left: 8px solid var(--deep-blue);
    text-align: center;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.9),
        0 0 35px rgba(26,77,143,0.3),
        inset 0 0 40px rgba(0,0,0,0.5);
}

.music-teaser .teaser-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: teaser-pulse 2s ease-in-out infinite;
}

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

.music-teaser h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--steel-blue);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 
        2px 2px 0 var(--deep-blue-dark),
        0 0 25px var(--deep-blue);
}

.music-teaser p {
    font-size: 1.1rem;
    color: var(--dirty-white);
    line-height: 1.8;
}

/* ===========================================
   VIDEOS SECTION - BRUTAL STYLE
   =========================================== */
.videos {
    background: var(--black);
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.video-card {
    position: relative;
    background: var(--near-black);
    border: 4px solid var(--deep-blue-dark);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.9),
        0 0 25px rgba(26,77,143,0.3);
}

.video-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        var(--deep-blue) 0%, 
        transparent 35%, 
        transparent 65%, 
        var(--deep-blue) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--deep-blue);
    box-shadow: 
        0 20px 50px rgba(0,0,0,1),
        0 0 50px rgba(26,77,143,0.7);
}

.video-card:hover::before {
    opacity: 1;
    animation: borderPulse 2s ease-in-out infinite;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: contrast(120%) saturate(110%);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
    filter: contrast(140%) saturate(130%);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26,77,143,0.9), rgba(5,26,46,0.95));
    border: 4px solid var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(26,77,143,0.8),
        0 5px 20px rgba(0,0,0,0.8);
}

.video-play-btn svg {
    width: 35px;
    height: 35px;
    fill: white;
    margin-left: 5px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, var(--steel-blue), var(--deep-blue));
    box-shadow: 
        0 0 50px var(--steel-blue),
        0 8px 30px rgba(0,0,0,0.9);
    animation: play-pulse 0.5s ease-in-out;
}

@keyframes play-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1.15); }
    50% { transform: translate(-50%, -50%) scale(1.25); }
}

.videos-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

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

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    border: 5px solid var(--deep-blue);
    box-shadow: 
        0 0 60px var(--deep-blue),
        0 20px 80px rgba(0,0,0,1);
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--deep-blue);
    border: 3px solid var(--deep-blue-dark);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    box-shadow: 0 0 30px var(--deep-blue);
}

.video-modal-close:hover {
    background: var(--steel-blue);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 50px var(--steel-blue);
}

/* ===========================================
   FEATURED VIDEO SECTION
   =========================================== */
.featured-video {
    background: var(--near-black);
    border-top: 5px solid var(--deep-blue-dark);
    border-bottom: 5px solid var(--deep-blue-dark);
    position: relative;
}

.featured-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(26,77,143,0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(26,77,143,0.03) 3px
        );
    pointer-events: none;
    z-index: 1;
}

.featured-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border: 5px solid var(--deep-blue);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.9),
        0 0 50px rgba(26,77,143,0.6),
        inset 0 0 30px rgba(0,0,0,0.8);
    background: var(--black);
    overflow: hidden;
}

.featured-video-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        var(--deep-blue) 0%, 
        transparent 35%, 
        transparent 65%, 
        var(--deep-blue) 100%
    );
    z-index: -1;
    animation: borderPulse 4s ease-in-out infinite;
}

.featured-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===========================================
   VIDEO THUMBNAIL LINK (for non-embeddable videos)
   =========================================== */
.video-thumbnail-link {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail-link a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.video-thumbnail-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.8);
}

.video-thumbnail-link:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26,77,143,0.95), rgba(10,37,64,0.95));
    border: 4px solid var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 40px rgba(26,77,143,0.8),
        0 8px 30px rgba(0,0,0,0.9);
}

.play-overlay svg {
    width: 40px;
    height: 40px;
    fill: white;
    margin-left: 5px;
}

.video-thumbnail-link:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
        0 0 60px var(--steel-blue),
        0 12px 40px rgba(0,0,0,0.95);
    animation: pulse-play 1s ease-in-out infinite;
}

@keyframes pulse-play {
    0%, 100% { transform: translate(-50%, -50%) scale(1.15); }
    50% { transform: translate(-50%, -50%) scale(1.25); }
}

.video-cta-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(26,77,143,0.95), rgba(10,37,64,0.9));
    border: 2px solid var(--deep-blue);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 
        0 0 30px rgba(26,77,143,0.6),
        0 5px 20px rgba(0,0,0,0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.video-thumbnail-link:hover .video-cta-text {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* ===========================================
   BACK TO TOP BUTTON
   =========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(26,77,143,0.9), rgba(5,26,46,0.95));
    border: 3px solid var(--deep-blue);
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(26,77,143,0.6),
        0 5px 20px rgba(0,0,0,0.8);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--steel-blue), var(--deep-blue));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 0 50px var(--steel-blue),
        0 10px 30px rgba(0,0,0,0.9);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===========================================
   RESPONSIVE - MOBILE DROPDOWN MENU
   =========================================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 32px;
        height: 4px;
        background: var(--deep-blue);
        transition: all 0.3s ease;
        box-shadow: 0 0 10px var(--deep-blue);
    }
    
    /* Animate hamburger to X when active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    /* DROPDOWN MENU STYLES */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: 2rem;
        width: auto;
        min-width: 200px;
        max-width: 90vw;
        height: auto;
        max-height: 0;
        flex-direction: column;
        background: rgba(5,26,46,0.75);
        backdrop-filter: blur(20px) saturate(150%);
        padding: 0;
        gap: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
        border: 2px solid var(--deep-blue-dark);
        border-top: 3px solid var(--deep-blue);
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }
    
    .nav-menu.active {
        max-height: 500px;
        padding: 1.5rem 0;
        box-shadow: 
            0 15px 50px rgba(0,0,0,0.95),
            0 0 40px rgba(26,77,143,0.5),
            inset 0 0 30px rgba(0,0,0,0.4);
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger the fade-in animation */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.35s; }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 2px;
        border-bottom: 1px solid rgba(26,77,143,0.2);
        transition: all 0.3s ease;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: rgba(26,77,143,0.3);
        padding-left: 2.5rem;
        color: white;
        text-shadow: 0 0 20px var(--deep-blue);
    }
    
    .nav-link::before {
        display: none;
    }
    
    /* Logo sizing */
    .nav-logo {
        font-size: 1.45rem;
        letter-spacing: 0.5px;
        max-width: 90vw;
    }
    
    /* Hero adjustments */
    .hero-title-main {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: 8px;
        line-height: 1.1;
    }
    
    /* Section title adjustments */
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        letter-spacing: 2px;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: block;
    }
    
    /* Grid adjustments */
    .photos-grid,
    .tour-dates,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    /* MOBILE FIX: Ensure tour content is visible */
    .live {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* MOBILE FIX: Remove ALL decorative overlays from live section */
    .live::before,
    .live::after,
    .live-overlay,
    .live-bg-image {
        display: none !important;
    }
    
    .tour-dates {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .tour-date,
    .tour-date-poster {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .tour-poster-image img,
    .tour-venue h3,
    .tour-venue p,
    .tour-details,
    .section-label,
    .section-title {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Button adjustments */
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* ===========================================
   ADDITIONAL BRUTAL EFFECTS
   =========================================== */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

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

.visible {
    opacity: 1;
}

/* Blood drip effect (optional, can be applied to specific elements) */
.blood-drip {
    position: relative;
}

.blood-drip::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid var(--deep-blue);
    opacity: 0.7;
    filter: blur(2px);
}

/* ===========================================
   BEAUTY GLITCH FONT
   =========================================== */
@font-face {
    font-family: 'Beauty Glitch';
    src: url('fonts/BeautyGlitch.woff2') format('woff2'),
         url('fonts/BeautyGlitch.woff') format('woff'),
         url('fonts/BeautyGlitch.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Force font loading */
body {
    font-family: 'Inter', 'Arial', sans-serif;
}

/* Apply to Hero Title */
.hero-title-main {
    font-family: 'Beauty Glitch', 'Bebas Neue', Impact, sans-serif !important;
}

/* Apply to Section Titles */
.section-title {
    font-family: 'Beauty Glitch', 'Bebas Neue', Impact, sans-serif !important;
}

/* Apply to Navigation Logo */
.nav-logo {
    font-family: 'Beauty Glitch', 'Bebas Neue', Impact, sans-serif !important;
}

/* Optional: Apply to any h1 elements */
h1 {
    font-family: 'Beauty Glitch', 'Bebas Neue', Impact, sans-serif !important;
}

/* ===========================================
   SITE10 MOBILE FONT-SIZE FIX
   =========================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: clamp(2rem, 7vw, 2.5rem) !important;
    }
}

/* ===========================================
   FORM MESSAGE STYLES
   =========================================== */
.form-message {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    color: #10b981;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #ef4444;
}

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

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===========================================
   POSTER LIGHTBOX
   =========================================== */
.poster-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.poster-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.poster-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.poster-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border: 8px solid var(--deep-blue);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.9),
        0 0 80px rgba(26,77,143,0.5);
}

.poster-lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--deep-blue);
    color: white;
    border: 3px solid var(--steel-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.poster-lightbox-close:hover {
    background: var(--steel-blue);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 30px rgba(26,77,143,0.6);
}

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

/* Poster images are not clickable - use the Poster button instead */
.tour-date-poster .tour-poster-image {
    cursor: default;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .poster-lightbox.active {
        padding: 1rem;
    }
    
    .poster-lightbox-content img {
        border-width: 5px;
    }
    
    .poster-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
