/* Stadium lights background gradient */
body {
    background: radial-gradient(circle at 50% -20%, #073820 0%, #070b12 70%);
    background-attachment: fixed;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Custom Glassmorphism styles */
.glass-panel {
    background: rgba(11, 25, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(4, 76, 43, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-panel-hover:hover {
    border-color: rgba(4, 111, 63, 0.5);
    box-shadow: 0 8px 32px 0 rgba(4, 111, 63, 0.15);
    transform: translateY(-4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav {
    background: rgba(7, 11, 18, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(4, 76, 43, 0.2);
}

/* Custom scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #070b12;
}

::-webkit-scrollbar-thumb {
    background: #044c2b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #076f3f;
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(196, 18, 44, 0.4); }
    50% { box-shadow: 0 0 25px rgba(196, 18, 44, 0.8); }
}

.pulse-red-glow {
    animation: pulse-glow 2s infinite;
}

/* Text glow */
.text-glow-green {
    text-shadow: 0 0 10px rgba(7, 111, 63, 0.6);
}

.text-glow-red {
    text-shadow: 0 0 10px rgba(196, 18, 44, 0.6);
}

/* Custom Active Tab indicator */
.tab-active {
    color: #f8fafc;
    border-bottom: 2px solid #e31b23;
    text-shadow: 0 0 8px rgba(227, 27, 35, 0.4);
}

/* Custom timeline border */
.timeline-border {
    position: relative;
}

.timeline-border::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #044c2b, #c4122c, #044c2b, transparent);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-border::before {
        left: 31px;
    }
}
