/* Use Inter font */
body {
    font-family: 'Inter', sans-serif;
}
/* Glowing text effect */
.glow-text {
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.7),
                 0 0 20px rgba(239, 68, 68, 0.5),
                 0 0 30px rgba(239, 68, 68, 0.3);
}
/* Animation for the NO text */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1F2937;
}
::-webkit-scrollbar-thumb {
    background: #4B5563;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6B7280;
}
/* Glow shadows for timeline dots */
.shadow-glow-blue {
    box-shadow: 0 0 6px 1px rgba(59, 130, 246, 0.7);
}
.shadow-glow-purple {
    box-shadow: 0 0 6px 1px rgba(139, 92, 246, 0.7);
}