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

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #333;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.desktop {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/wallpapers/White.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#app-container {
    height: calc(100vh - 80px);
    position: relative;
}

/* Utility classes */
.no-animations .app-window.animating.suck-in {
    transform: scale(0.1) translate(var(--target-x), var(--target-y));
    opacity: 0;
    animation: none !important;
}

.no-animations .app-window.animating.pop-out {
    transform: scale(1) translate(0, 0);
    opacity: 1;
    animation: none !important;
}

/* Reduce transition times when animations are disabled */
.no-animations .window-control-btn {
    transition-duration: 0.05s !important;
}

.no-animations .dock-app {
    transition-duration: 0.05s !important;
}

.no-animations .dock-app::after {
    transition-duration: 0.05s !important;
}