/* Explain: Base styles, reset, and space background effects. */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
    background-color: var(--background-color);
    color: var(--text-color);
}



/* Space Grid Background */
.cyber-grid {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(0, 240, 255, 0.03) 1px, transparent 1px), 
        linear-gradient(to bottom, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    z-index: -1;
    pointer-events: none;
}
