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

/* 80s Retro Font Variables */
:root {
    --font-primary: 'Rajdhani', 'Arial', sans-serif;
    --font-heading: 'Electrolize', 'Orbitron', 'Arial', sans-serif;
    --font-accent: 'Audiowide', 'Arial', sans-serif;
    --font-pixel: 'Press Start 2P', monospace;
    --font-bttf: 'Electrolize', 'Share Tech Mono', monospace;
    --font-bebas: 'Bebas Neue', 'Arial', sans-serif;
    --font-dm-sans: 'DM Sans', 'Arial', sans-serif;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
}

/* ===== NAVIGATION MENU ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 30px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar-logo-small {
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .navbar-logo-small {
    opacity: 1;
}

.small-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    text-decoration: none;
    font-family: var(--font-dm-sans);
    font-weight: 500;
    color: white;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
    border: 2px solid transparent;
}

.nav-list li a:hover {
    color: #ccc;
}

.nav-list li a.active {
    border: 2px solid black;
}

.navbar.scrolled .nav-list li a {
    color: black;
}

.navbar.scrolled .nav-list li a:hover {
    color: #666;
}

.navbar.scrolled .nav-list li a.active {
    border: 2px solid black;
}

/* Social Media Icon in Navigation */
.nav-social {
    display: flex;
    align-items: center;
}

.nav-social .social-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    border: 2px solid transparent;
}

.nav-social .social-link:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.nav-social .social-icon {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-social .social-icon {
    filter: none;
}

/* Navigation responsive design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
    
    .small-logo {
        height: 35px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-list li a {
        font-size: 18px;
    }
    
    .nav-social .social-icon {
        height: 22px;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


@media (max-width: 480px) {
    .navbar {
        padding: 8px 15px;
    }
    
    .small-logo {
        height: 30px;
    }
    
    .nav-list {
        gap: 10px;
    }
    
    .nav-list li a {
        font-size: 16px;
    }
    
    .nav-social .social-icon {
        height: 20px;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


body {
    font-family: var(--font-primary);
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 2rem;
    z-index: 2;
}

.video-logo {
    max-width: 960px;
    width: 72%;
    margin-bottom: 0px;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


.band-logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.band-name {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b6b;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.footer {
    background: #111;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .band-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 200px;
    }

    .content-section {
        padding: 2rem 1rem;
    }

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

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== TOUR DATES STYLES ===== */

/* CSS Custom Properties for Tour Dates */
:root {
    /* Colors */
    --color-primary: #ffffff;
    --color-secondary: #ffffff;
    --color-accent: #ff6b35;
    --color-text: #ffffff;
    --color-text-muted: #ffffff;
    --color-text-past: #ffffff;
    --color-background: #1a1a1a;
    --color-surface: rgba(255, 255, 255, 0.1);
    --color-border: rgba(255, 255, 255, 0.2);
    
    /* Typography */
    --font-primary: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Layout */
    --max-width: 900px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Tour Dates Background */
.tour-background {
    position: relative;
    background-image: url('../images/TourBand.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.tour-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

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

/* Tour Dates Header */
.tour-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.tour-title {
    font-family: var(--font-bttf);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: #2c9ccf;
    text-shadow: 
        0 0 10px rgba(44, 156, 207, 0.8),
        0 0 20px rgba(44, 156, 207, 0.6),
        0 0 30px rgba(44, 156, 207, 0.4),
        0 0 40px rgba(44, 156, 207, 0.3);
    animation: bttfGlow 3s ease-in-out infinite alternate;
    text-transform: uppercase;
}

.tour-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Events Section */
.events-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.events-container {
    position: relative;
}

/* Loading State */
.loading {
    text-align: center;
    padding: var(--space-3xl) 0;
    color: var(--color-text);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.empty-state h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.empty-state p {
    color: var(--color-text);
    font-size: var(--font-size-lg);
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.event-card {
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.event-card:last-child {
    border-bottom: none;
}

/* Event Content Layout */
.event-content {
    display: grid;
    grid-template-columns: 120px 150px 200px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0;
    justify-items: start;
    width: 100%;
}

/* Date Badge */
.event-date {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    justify-content: flex-start;
    white-space: nowrap;
    min-width: 140px;
}

.date-weekday {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    white-space: nowrap;
}

.date-month-day {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: 1;
    color: var(--color-text);
    white-space: nowrap;
}

.date-year {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    font-weight: 500;
    white-space: nowrap;
}

/* Event Details */
.event-details {
    display: contents;
}

.event-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: var(--color-text);
    white-space: nowrap;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.event-location {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    color: var(--color-text);
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.google-maps-link {
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.google-maps-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.google-maps-link:hover .google-maps-icon {
    opacity: 1;
}

.event-time {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    color: var(--color-text);
    font-weight: 400;
    margin: 0;
    text-align: left;
    justify-self: start;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tour Dates Responsive Design */
@media (max-width: 768px) {
    .tour-background {
        background-attachment: scroll;
    }
    
    .tour-header {
        padding: 2rem 1rem 1rem;
    }
    
    .events-section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .event-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
        justify-items: start;
    }
    
    .event-date {
        order: -1;
        flex-direction: row;
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .event-details {
        display: contents;
    }
    
    .event-time {
        text-align: left;
        justify-self: start;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


@media (max-width: 480px) {
    .event-card {
        padding: var(--space-md);
    }
    
    .event-title {
        font-size: var(--font-size-lg);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .tour-background {
        background-attachment: scroll;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== EPK AND BOOKING SECTION ===== */

.epk-booking-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.epk-booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.epk-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.epk-title {
    font-family: var(--font-bttf);
    font-size: 3rem;
    color: #2c9ccf;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(44, 156, 207, 0.8),
        0 0 20px rgba(44, 156, 207, 0.6),
        0 0 30px rgba(44, 156, 207, 0.4),
        0 0 40px rgba(44, 156, 207, 0.3);
    animation: bttfGlow 3s ease-in-out infinite alternate;
    text-transform: uppercase;
}

@keyframes neonGlow {
    0% {
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #00ffff;
    }
    100% {
        text-shadow: 
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 15px #00ffff,
            0 0 20px #00ffff,
            0 0 35px #00ffff,
            0 0 40px #00ffff;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


.contact-info {
    padding: 2rem 0;
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    border-radius: 15px;
    border: none;
    box-shadow: none;
}

.contact-info h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff00ff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details p {
    font-family: var(--font-dm-sans);
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.contact-details strong {
    font-family: var(--font-dm-sans);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.contact-link {
    font-family: var(--font-dm-sans);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    letter-spacing: 1px;
}

.contact-link:hover {
    color: #ffffff;
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
    border: 1px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.stage-plot-section {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    position: relative;
}


.stage-plot-box {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-dm-sans);
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    border: 3px solid #ff8800;
    background: rgba(255, 136, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 300px;
    box-shadow: 
        0 0 20px rgba(255, 136, 0, 0.3),
        inset 0 0 20px rgba(255, 136, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff8800;
}

.stage-plot-box:hover {
    background: rgba(255, 136, 0, 0.3);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 136, 0, 0.6),
        0 0 50px rgba(255, 136, 0, 0.3),
        inset 0 0 30px rgba(255, 136, 0, 0.2);
    text-shadow: 0 0 15px #ff8800;
}

.media-links-section {
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
}


.media-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.media-column {
    text-align: center;
}

.media-box {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-dm-sans);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    border: 2px solid #ffff00;
    background: rgba(255, 255, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 
        0 0 15px rgba(255, 255, 0, 0.3),
        inset 0 0 15px rgba(255, 255, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #ffff00;
}

.media-box:hover {
    background: rgba(255, 255, 0, 0.3);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 25px rgba(255, 255, 0, 0.6),
        0 0 40px rgba(255, 255, 0, 0.3),
        inset 0 0 25px rgba(255, 255, 0, 0.2);
    text-shadow: 0 0 10px #ffff00;
}

/* Promo Video specific styling (stage-plot-box class) */
.stage-plot-box {
    border: 2px solid #ff8800 !important;
    background: rgba(255, 136, 0, 0.1) !important;
    color: #ffffff !important;
    text-shadow: 0 0 5px #ff8800 !important;
}

.stage-plot-box:hover {
    background: rgba(255, 136, 0, 0.3) !important;
    color: #ffffff !important;
    box-shadow: 
        0 0 25px rgba(255, 136, 0, 0.6),
        0 0 40px rgba(255, 136, 0, 0.3),
        inset 0 0 25px rgba(255, 136, 0, 0.2) !important;
    text-shadow: 0 0 10px #ff8800 !important;
}

/* Stage Plot link specific styling */
.stage-plot-link {
    border: 2px solid #00bfff !important;
    background: rgba(0, 191, 255, 0.1) !important;
    color: #ffffff !important;
    text-shadow: 0 0 5px #00bfff !important;
}

.stage-plot-link:hover {
    background: rgba(0, 191, 255, 0.3) !important;
    color: #ffffff !important;
    box-shadow: 
        0 0 25px rgba(0, 191, 255, 0.6),
        0 0 40px rgba(0, 191, 255, 0.3),
        inset 0 0 25px rgba(0, 191, 255, 0.2) !important;
    text-shadow: 0 0 10px #00bfff !important;
}

/* Promo Pic 2 and 3 specific styling - only in first column */
.media-column:first-child .media-box:nth-child(2),
.media-column:first-child .media-box:nth-child(3) {
    border: 2px solid #00ff00 !important;
    background: rgba(0, 255, 0, 0.1) !important;
    color: #ffffff !important;
    text-shadow: 0 0 5px #00ff00 !important;
}

.media-column:first-child .media-box:nth-child(2):hover,
.media-column:first-child .media-box:nth-child(3):hover {
    background: rgba(0, 255, 0, 0.3) !important;
    color: #ffffff !important;
    box-shadow: 
        0 0 25px rgba(0, 255, 0, 0.6),
        0 0 40px rgba(0, 255, 0, 0.3),
        inset 0 0 25px rgba(0, 255, 0, 0.2) !important;
    text-shadow: 0 0 10px #00ff00 !important;
}

/* ===== MODAL LIGHTBOX STYLES ===== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #00ff00;
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(0, 255, 0, 0.5),
        0 0 60px rgba(0, 255, 0, 0.3),
        inset 0 0 30px rgba(0, 255, 0, 0.1);
    animation: modalGlow 3s ease-in-out infinite alternate;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: inline-block;
    width: auto;
    height: auto;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #00ff00;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    text-shadow: 
        0 0 10px rgba(0, 255, 0, 0.8),
        0 0 20px rgba(0, 255, 0, 0.6);
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(0, 255, 0, 1),
        0 0 30px rgba(0, 255, 0, 0.8),
        0 0 45px rgba(0, 255, 0, 0.6);
    transform: scale(1.1);
}

.modal-image-container {
    padding: 20px;
    display: block;
    text-align: center;
}

.modal-image {
    max-width: calc(90vw - 46px);
    max-height: calc(90vh - 120px);
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.modal-footer {
    padding: 15px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 255, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff00;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 5px;
    background: rgba(0, 255, 0, 0.1);
}

.download-link:hover {
    color: #ffffff;
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    transform: translateY(-2px);
}

.download-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes modalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(0, 255, 0, 0.5),
            0 0 60px rgba(0, 255, 0, 0.3),
            inset 0 0 30px rgba(0, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(0, 255, 0, 0.8),
            0 0 80px rgba(0, 255, 0, 0.5),
            0 0 120px rgba(0, 255, 0, 0.3),
            inset 0 0 40px rgba(0, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* Mobile Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-image {
        max-width: calc(95vw - 46px);
        max-height: calc(95vh - 120px);
    }
    
    .modal-image-container {
        padding: 15px;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .modal-footer {
        padding: 10px 15px;
    }
    
    .download-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


@media (max-width: 480px) {
    .modal-content {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .modal-image {
        max-width: calc(98vw - 46px);
        max-height: calc(98vh - 120px);
    }
    
    .modal-image-container {
        padding: 10px;
    }
    
    .modal-close {
        top: 8px;
        right: 12px;
        font-size: 1.8rem;
        width: 30px;
        height: 30px;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}





/* EPK Section Responsive Design */
@media (max-width: 768px) {
    .epk-booking-section {
        padding: 3rem 1rem;
    }
    
    .epk-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem 0;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .contact-details p {
        font-size: 1.3rem;
    }
    
    .contact-details strong {
        font-size: 1.5rem;
    }
    
    .stage-plot-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .stage-plot-box {
        font-size: 1.3rem;
        padding: 1.2rem 2rem;
        min-width: 250px;
    }
    
    .media-links-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .media-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .media-box {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== MIX TAPE SECTION ===== */

.mix-tape-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/BgSongList.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.mix-tape-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 156, 207, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 156, 207, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(44, 156, 207, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.mix-tape-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mix-tape-title {
    font-family: var(--font-bttf);
    font-size: 3rem;
    color: #2c9ccf;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(44, 156, 207, 0.8),
        0 0 20px rgba(44, 156, 207, 0.6),
        0 0 30px rgba(44, 156, 207, 0.4),
        0 0 40px rgba(44, 156, 207, 0.3);
    animation: bttfGlow 3s ease-in-out infinite alternate;
    text-transform: uppercase;
}

.mix-tape-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: start;
    max-width: 100%;
    padding: 0 1rem;
}

.mix-tape-item {
    background: transparent;
    border-radius: 15px;
    border: none;
    box-shadow: none;
    padding: 0.5rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.mix-tape-img {
    width: 100%;
    height: auto;
    max-width: 350px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.and-more {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1rem;
}

.and-more p {
    color: #cccccc;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}



/* Mix Tape Responsive Design */
@media (max-width: 1024px) {
    .mix-tape-img {
        max-width: 300px;
    }
    
    .mix-tape-item {
        max-width: 350px;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


@media (max-width: 768px) {
    .mix-tape-section {
        padding: 3rem 1rem;
        background-attachment: scroll;
    }
    
    .mix-tape-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .mix-tape-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .mix-tape-item {
        max-width: 300px;
        padding: 0.5rem;
    }
    
    .mix-tape-img {
        max-width: 280px;
    }
    
    .and-more {
        margin-top: 1.5rem;
        padding-top: 0.8rem;
    }
    
    .and-more p {
        font-size: 1.1rem;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


@media (max-width: 480px) {
    .mix-tape-section {
        padding: 2rem 0.5rem;
        background-attachment: scroll;
    }
    
    .mix-tape-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .mix-tape-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .mix-tape-item {
        max-width: 250px;
        padding: 0.5rem;
    }
    
    .mix-tape-img {
        max-width: 220px;
    }
    
    .and-more {
        margin-top: 1rem;
        padding-top: 0.6rem;
    }
    
    .and-more p {
        font-size: 1rem;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== GALLERY SECTION ===== */

.gallery-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/BgLightning.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-family: var(--font-bttf);
    font-size: 3rem;
    color: #2c9ccf;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(44, 156, 207, 0.8),
        0 0 20px rgba(44, 156, 207, 0.6),
        0 0 30px rgba(44, 156, 207, 0.4),
        0 0 40px rgba(44, 156, 207, 0.3);
    animation: bttfGlow 3s ease-in-out infinite alternate;
    text-transform: uppercase;
}

@keyframes bttfGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(44, 156, 207, 0.8),
            0 0 20px rgba(44, 156, 207, 0.6),
            0 0 30px rgba(44, 156, 207, 0.4),
            0 0 40px rgba(44, 156, 207, 0.3);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(44, 156, 207, 1),
            0 0 30px rgba(44, 156, 207, 0.8),
            0 0 45px rgba(44, 156, 207, 0.6),
            0 0 60px rgba(44, 156, 207, 0.5),
            0 0 80px rgba(44, 156, 207, 0.3);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


.polaroid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
    align-items: start;
    max-width: 100%;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.polaroid {
    background: white;
    padding: 8px 8px 15px 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    margin: 5px;
    display: inline-block;
    transform: rotate(-2deg);
    width: 100%;
    max-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid:nth-child(3n) {
    transform: rotate(-1deg);
}

.polaroid:nth-child(5n) {
    transform: rotate(1deg);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.2);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    z-index: 10;
    position: relative;
}

.polaroid img {
    width: 100%;
    height: 144px;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.polaroid p {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 6px;
    color: #333;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.polaroid-placeholder {
    background: white;
    padding: 8px 8px 15px 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    margin: 5px;
    display: inline-block;
    transform: rotate(2deg);
    width: 100%;
    max-width: 180px;
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.polaroid-placeholder:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 
        0 8px 16px rgba(0,0,0,0.4),
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.3);
    z-index: 10;
    position: relative;
}

.placeholder-content {
    text-align: center;
    padding: 20px;
}

.placeholder-text {
    font-family: "Comic Sans MS", "Bradley Hand", cursive;
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: bold;
}

/* Gallery Responsive Design */
@media (max-width: 1200px) {
    .polaroid {
        max-width: 168px;
    }
    
    .polaroid img {
        height: 132px;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 1rem;
    }
    
    .gallery-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .polaroid-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .polaroid {
        max-width: 144px;
    }
    
    .polaroid img {
        height: 120px;
    }
    
    .polaroid p {
        font-size: 10px;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


@media (max-width: 480px) {
    .polaroid-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .polaroid {
        max-width: 120px;
    }
    
    .polaroid img {
        height: 96px;
    }
    
    .polaroid p {
        font-size: 9px;
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== LOGO MODAL LIGHTBOX STYLES ===== */

.logo-modal-content {
    border: 3px solid #ffff00 !important;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 60px rgba(255, 255, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 0, 0.1) !important;
    animation: logoModalGlow 3s ease-in-out infinite alternate !important;
}

.logo-modal-close {
    color: #ffff00 !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 255, 0, 1),
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 45px rgba(255, 255, 0, 0.6) !important;
}

.logo-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 0, 0.3) !important;
}

.logo-modal .download-link {
    color: #ffff00 !important;
    border: 1px solid rgba(255, 255, 0, 0.3) !important;
    background: rgba(255, 255, 0, 0.1) !important;
}

.logo-modal .download-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 0, 0.2) !important;
    border-color: #ffff00 !important;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8) !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
}

@keyframes logoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 255, 0, 0.5),
            0 0 60px rgba(255, 255, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 255, 0, 0.8),
            0 0 80px rgba(255, 255, 0, 0.5),
            0 0 120px rgba(255, 255, 0, 0.3),
            inset 0 0 40px rgba(255, 255, 0, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== SONGLIST LINK STYLES ===== */

.songlist-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.songlist-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 45px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* ===== SONGLIST MODAL LIGHTBOX STYLES ===== */

.songlist-modal-content {
    border: 3px solid #ff00ff !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1) !important;
    animation: songlistModalGlow 3s ease-in-out infinite alternate !important;
    max-width: 80vw;
    max-height: 80vh;
    padding: 2rem;
    overflow-y: auto;
}

.songlist-modal-close {
    color: #ff00ff !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6) !important;
}

.songlist-modal-close:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 1),
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 45px rgba(255, 0, 255, 0.6) !important;
}

.songlist-content {
    text-align: center;
    padding: 2rem;
}

.songlist-content h2 {
    color: #ffffff;
    font-family: 'Mouse Memoirs', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes songlistModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 0, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(255, 0, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 255, 0.8),
            0 0 80px rgba(255, 0, 255, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3),
            inset 0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Mike polaroid - show more of the top */
.polaroid img[alt="Gallery Image 4"] {
    object-position: center -20px;
}

/* ===== SONGLIST SONGS STYLING ===== */

.songlist-songs {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.songlist-songs p {
    color: #ffffff;
    font-family: 'Winky Sans', cursive;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.songlist-songs p strong {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}


/* ===== VIDEO MODAL STYLES ===== */

.video-modal .modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #ff8800;
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(255, 136, 0, 0.5),
        inset 0 0 20px rgba(255, 136, 0, 0.1);
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    padding: 20px;
    position: relative;
    animation: videoModalGlow 2s ease-in-out infinite alternate;
}

.video-modal .modal-close {
    color: #ff8800;
    text-shadow: 0 0 10px rgba(255, 136, 0, 0.8);
}

.video-modal .modal-close:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 136, 0, 1);
    transform: scale(1.1);
}

.modal-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.modal-video {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

@keyframes videoModalGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 136, 0, 0.5),
            inset 0 0 20px rgba(255, 136, 0, 0.1);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(255, 136, 0, 0.8),
            inset 0 0 30px rgba(255, 136, 0, 0.2);
    }
}

/* Responsive video modal */
@media (max-width: 768px) {
    .video-modal .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 15px;
    }
    
    .modal-video {
        max-height: 75vh;
    }
}
