/* ==========================================================================
   ADA ENTERTAINMENT ZONE - STYLESHEET
   Core Design Tokens, Custom Utilities, and Animations
   ========================================================================== */

:root {
    --color-ada-red: #E51924;
    --color-ada-blue: #0A74DA;
    --color-ada-green: #10B981;
    --color-ada-purple: #6D28D9;
    --color-ada-gold: #EAB308;
    --color-ada-dark: #0B0D12;
    --color-ada-card: #131722;
    --color-ada-border: #22293A;
}

/* Base resets & typography */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-ada-dark);
    color: #F3F4F6;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

.font-display {
    font-family: 'Montserrat', system-ui, sans-serif;
}

/* Custom Neon Glows */
.glow-red {
    box-shadow: 0 0 25px rgba(229, 25, 36, 0.35);
}

.glow-blue {
    box-shadow: 0 0 25px rgba(10, 116, 218, 0.35);
}

.glow-gold {
    box-shadow: 0 0 25px rgba(234, 179, 8, 0.3);
}

.glow-purple {
    box-shadow: 0 0 25px rgba(109, 40, 217, 0.3);
}

.glow-green {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

/* Card hover lift effect */
.card-hover {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0B0D12;
}

::-webkit-scrollbar-thumb {
    background: #22293A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E51924;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

#mobile-menu.menu-closed {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

#mobile-menu.menu-open {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
}

/* Lightbox Modal Animation */
#lightbox {
    transition: opacity 0.25s ease-in-out;
}

#lightbox-content {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

#lightbox.hidden #lightbox-content {
    transform: scale(0.95);
    opacity: 0;
}

#lightbox:not(.hidden) #lightbox-content {
    transform: scale(1);
    opacity: 1;
}
