/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-dark);
    color: var(--text);
    overflow: hidden;
    height: 100vh;
    user-select: none;
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 2rem;
    }

    .start-btn .start-text {
        display: none;
    }

    .desktop-icon {
        width: 60px;
    }

    .desktop-icon .icon {
        font-size: 1.5rem;
    }

    .desktop-icon .icon-label {
        font-size: 0.65rem;
    }

    .window {
        min-width: 280px;
    }

    .ascii-art {
        font-size: 0.35rem;
    }
}
