:root {
    --primary: #ff0000;
    --primary-glow: rgba(255, 0, 0, 0.4);
}

body {
    min-height: max(884px, 100dvh);
    overflow-x: hidden;
    background-color: #1a0a0a;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ff0000"><path d="M5.5 3l0 17.5 4.8-4.8 3.1 7.3 2.1-1-3.1-7.2 6-.1z" stroke="white" stroke-width="1.5"/></svg>') 5 2, auto;
}

a,
button,
.card-glow,
[role="button"] {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ff0000"><path d="M14 6V2a2 2 0 1 0-4 0v9.1l-1.6-1.6a1 1 0 1 0-1.4 1.4l5.1 5.1c.3.3.7.4 1.1.4H19a2 2 0 0 0 2-2V8a2 2 0 1 0-4 0v1h-1V7a2 2 0 1 0-4 0v1h-1V6z" stroke="white" stroke-width="1.5"/></svg>') 10 2, pointer !important;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Cards Glow */
.card-glow:hover {
    box-shadow: 0 0 30px var(--primary-glow);
    border-color: var(--primary) !important;
    transform: translateY(-5px);
}

/* Pulse for online indicator */
.online-pulse {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Glassmorphism Header */
nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
