:root {
    --win-gray: #C0C0C0;
    --win-dark-gray: #808080;
    --win-light-gray: #DFDFDF;
    --win-blue: #000080;
    --win-title-blue: #0A246A;
    --win-white: #FFFFFF;
    --paint-pink: #FF00FF;
    --paint-lime: #00FF00;
    --paint-cyan: #00FFFF;
    --paint-red: #FF0000;
    --paint-yellow: #FFFF00;
    --paint-blue: #0000FF;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: #008080;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.font-comic {
    font-family: 'Comic Neue', cursive;
}

.font-pixel {
    font-family: 'VT323', monospace;
}

.win-border-outset {
    border: 2px solid;
    border-color: #FFFFFF #808080 #808080 #FFFFFF;
}

.win-border-inset {
    border: 2px solid;
    border-color: #808080 #FFFFFF #FFFFFF #808080;
}

.win-button {
    background: #C0C0C0;
    border: 2px solid;
    border-color: #FFFFFF #808080 #808080 #FFFFFF;
    padding: 4px 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    min-width: 75px;
}

.win-button:active {
    border-color: #808080 #FFFFFF #FFFFFF #808080;
    padding: 5px 15px 3px 17px;
}

.win-button:hover {
    background: #D4D4D4;
}

.title-bar {
    background: linear-gradient(90deg, #0A246A, #A6CAF0);
    padding: 3px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-bar-text {
    color: white;
    font-weight: bold;
    font-size: 12px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.title-bar-controls button {
    width: 16px;
    height: 14px;
    margin-left: 2px;
    background: #C0C0C0;
    border: 1px solid;
    border-color: #FFFFFF #808080 #808080 #FFFFFF;
    font-size: 8px;
    line-height: 1;
    cursor: default;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-0.5deg); }
    25% { transform: rotate(0.5deg); }
    50% { transform: rotate(-0.3deg); }
    75% { transform: rotate(0.3deg); }
}

@keyframes shimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes progressFake {
    0% { width: 5%; }
    20% { width: 45%; }
    40% { width: 42%; }
    60% { width: 70%; }
    75% { width: 68%; }
    90% { width: 85%; }
    100% { width: 87%; }
}

.wobble-animation {
    animation: wobble 2s ease-in-out infinite;
}

.shimmer-animation {
    animation: shimmer 1.5s ease-in-out infinite;
}

.progress-bar-fake {
    animation: progressFake 8s ease-in-out infinite;
}

.drop-zone-active {
    background-color: #E8F0FE !important;
    border-color: #0000FF !important;
}

.sparkle {
    display: inline-block;
    color: #FFD700;
    animation: shimmer 1s ease-in-out infinite;
}

@keyframes spin98 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spin-cursor {
    animation: spin98 1s linear infinite;
}