/* Styles extracted from code.html */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    background-color: #0c0e17;
    color: #f0f0fd;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.glass-card {
    background: rgba(23, 25, 36, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(70, 71, 82, 0.15);
}

.hero-glow {
    background: radial-gradient(circle at 50% 50%, rgba(208, 149, 255, 0.1) 0%, rgba(12, 14, 23, 0) 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(208, 149, 255, 0.08) 0%, rgba(0, 210, 253, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.3s ease;
}
