/* Header Styles */

.glass-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bg-gradient-brand {
    background: linear-gradient(135deg, #D93025 0%, #F97316 100%);
}

.ticker-wrap:hover .animate-ticker {
    animation-play-state: paused;
}

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
}

#mobile-menu.show {
    max-height: 500px;
    opacity: 1;
}
