/* styles.css */
:root {
    --neon-green: #39ff14;
    --neon-blue: #00ffff;
    --dark-bg: #0a0a0a;
}

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Neon Text Utilities */
.text-neon {
    text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green);
}

/* Animations */
@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.5;
    }
}

.animate-flicker {
    animation: flicker 2s infinite;
}

/* Agenda Section Styles */
.agenda-card {
    transition: all 0.3s ease;
}

.agenda-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bluf-capsule {
    border-left: 2px solid var(--neon-green);
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}