* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none; /* Previene que el usuario sombree texto accidentalmente al arrastrar ventanas */
}

body {
    background-color: var(--os-bg-color);
    background-image: url('../../assets/images/wallpaper-dark.jpg'); /* Tu fondo de alta gama */
    background-size: cover;
    background-position: center;
    color: var(--os-text-main);
    font-family: var(--sys-font);
    overflow: hidden; /* Vital: El OS no tiene scroll global, solo dentro de las ventanas */
    height: 100vh;
    width: 100vw;
}

/* Permitir selección de texto SOLO dentro de inputs y la terminal */
input, textarea, .terminal-output, .allow-select {
    user-select: text;
}

.system-layer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}