@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #FF0000;
    --primary-dark: #CC0000;
    --background: #0A0A0A;
    --surface: #121212;
    --text: #F5F5F5;
    --text-muted: #A0A0A0;
    --border: #262626;
    --accent-blue: #1E293B;
}

[data-theme="light"] {
    --background: #F5F5F5;
    --surface: #FFFFFF;
    --text: #0A0A0A;
    --text-muted: #4B5563;
    --border: #E5E7EB;
    --accent-blue: #E0E7FF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text);
    transition: background-color 0.5s ease, color 0.5s ease;
    margin: 0;
}

/* Custom Utilities or Specific Animations */
.glass {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.bg-gradient-mesh {
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 0, 0, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(30, 41, 59, 0.15) 0px, transparent 50%);
}

.animated-gradient {
    background: linear-gradient(-45deg, #ff0000, #000000, #121212, #1e293b);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}