* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background: #000;
    color: #00ff41;
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Matrix Background */
#matrix-canvas {
    position: fixed;
    top: 0; left: 0;
    z-index: -1;
    opacity: 0.2;
}

/* Custom Cursor */
#cursor {
    width: 8px; height: 8px;
    background: #00ff41;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
}

#cursor-blur {
    width: 30px; height: 30px;
    border: 1px solid #00ff41;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

/* Intro Overlay */
#intro-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    cursor: pointer;
    transition: 1s ease;
}

.blink {
    font-family: 'Orbitron', sans-serif;
    animation: pulse 1.5s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 350px;
    z-index: 10;
}

.hidden { display: none; }

/* Visualizer Bars */
#visualizer-container {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 100px;
    z-index: 1;
}

.bar {
    width: 5px;
    background: #00ff41;
    min-height: 2px;
}

/* Glitch and Avatar */
.glitch-text { font-family: 'Orbitron'; font-size: 1.8rem; margin: 15px 0; }
.avatar-container { position: relative; display: inline-block; }
#avatar { width: 100px; height: 100px; border-radius: 50%; border: 2px solid #00ff41; }
#status-dot { width: 15px; height: 15px; position: absolute; bottom: 5px; right: 5px; border-radius: 50%; border: 2px solid #000; }

.online { background: #23a55a; }
.dnd { background: #f23f43; }
.idle { background: #f0b232; }
.offline { background: #80848e; }

/* Links */
.links { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.link-btn {
    text-decoration: none;
    color: #00ff41;
    border: 1px solid #00ff41;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
}
.link-btn:hover { background: rgba(0, 255, 65, 0.2); transform: scale(1.05); }

/* Spotify Mini UI */
#spotify-container { margin-top: 15px; font-size: 12px; }
#track-art { width: 40px; border-radius: 5px; margin-right: 10px; }
.spotify-info { display: flex; align-items: center; justify-content: center; }
.progress-bg { width: 100%; height: 3px; background: #333; margin-top: 5px; }
#progress-fill { height: 100%; background: #00ff41; width: 0%; }