
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;700;800;900&display=swap');

:root {
    --color-blood: #ff0000;
    --color-neon: #00ff9d;
    --color-crimson: #dc2626;
    --color-coal: #111111;
    --color-shadow: #050505;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    background: #000000;
    color: #e5e7eb;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}

/* Advanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #000000, #111111);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-blood), var(--color-neon));
    border-radius: 6px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-crimson), var(--color-blood));
}

/* Gradients */
.bg-gradient-radial {
    background-image: radial-gradient(circle at center, var(--tw-gradient-from), var(--tw-gradient-to));
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-slideIn {
    animation: slideIn 0.8s ease-out forwards;
}

/* Custom Borders */
.border-glow {
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

/* Text Effects */
.text-glow {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-blood), transparent);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.1);
}

/* Noise Overlay */
.noise-overlay {
    position: relative;
}

.noise-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/noise.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Utility */
.backdrop-blur-sm {
    backdrop-filter: blur(8px);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
}
>