@font-face {
    font-family: 'Outfit';
    src: url('../assets/fonts/Outfit/Outfit-VariableFont_wght.ttf');
}

:root {
    --primary: #E41414;
    --dark: #050505;
    --darker: #000000;
    --light: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

/* Futuristic Glow Effects */
.glow-text {
    text-shadow: 0 0 20px rgba(228, 20, 20, 0.5);
}

.glow-box {
    box-shadow: 0 0 30px rgba(228, 20, 20, 0.15);
}

.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(228, 20, 20, 0.15) 0%, rgba(0, 0, 0, 0) 50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}