/* Main Styles */
:root {
    --bg-dark: #000000;
    --bg-card: rgba(20, 20, 20, 0.6);
    --primary: #ff1a1a;
    --primary-glow: rgba(255, 26, 26, 0.6);
    --success: #22c55e;
    --success-glow: rgba(34, 197, 94, 0.6);
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('dark_hooded_figure.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
}

/* Utilities */
.text-glow {
    text-shadow: 0 0 20px var(--primary-glow);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.neon-border {
    box-shadow: 0 0 10px var(--primary-glow), inset 0 0 10px var(--primary-glow);
    border: 1px solid var(--primary);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(255, 26, 26, 0.2);
    }

    50% {
        box-shadow: 0 0 40px var(--primary-glow), 0 0 70px rgba(255, 26, 26, 0.4);
    }
}

@keyframes blink-red {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 26, 26, 0.8), 0 0 40px rgba(255, 26, 26, 0.4);
    }

    50% {
        opacity: 0.5;
        text-shadow: 0 0 5px rgba(255, 26, 26, 0.4), 0 0 10px rgba(255, 26, 26, 0.2);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-success-glow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--success-glow), 0 0 40px rgba(34, 197, 94, 0.2);
    }

    50% {
        box-shadow: 0 0 40px var(--success-glow), 0 0 70px rgba(34, 197, 94, 0.4);
    }
}

.animate-pulse-success-glow {
    animation: pulse-success-glow 2s ease-in-out infinite;
}

.animate-blink-red {
    animation: blink-red 1.5s ease-in-out infinite;
}

.btn-primary-glow {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transition: all 0.3s ease;
}

.btn-primary-glow:hover {
    box-shadow: 0 0 40px var(--primary-glow);
    transform: scale(1.02);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 1;
    transform: none;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Marquee Animation */
.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
    width: max-content;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.animate-shimmer {
    animation: shimmer 2s infinite;
}