:root { --accent: #00dbc5; }
body { font-family: 'Inter', sans-serif; background-color: #050505; color: #ffffff; overflow-x: hidden; }
/* Hide default cursor everywhere to prevent double cursors */
*, *::before, *::after {
    cursor: none !important;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 219, 197, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -5;
    filter: blur(80px);
}
/* Background Animation */
@keyframes float-random {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10vw, 10vh); }
    50% { transform: translate(-5vw, 15vh); }
    75% { transform: translate(-10vw, -5vh); }
}
.bg-anim {
    animation: float-random 20s infinite ease-in-out;
}
/* Custom Cursor */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    filter: drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 15px var(--accent));
}
#cursor::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    clip-path: polygon(50% 0%, 0% 100%, 50% 70%, 100% 100%);
}
.text-accent { color: var(--accent); }

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
    color: var(--accent);
    margin-left: 4px;
}
@keyframes blink {
    50% { opacity: 0; }
}