* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MS Sans Serif', sans-serif;
    background: #008080;
    min-height: 100vh;
    touch-action: manipulation;
    overflow-x: hidden;
    overflow-y: auto;
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Стили для окна приветствия */
.welcome-window {
    background: #c0c0c0 !important;
    min-width: 350px;
    border: 3px solid;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    border-right-color: #808080;
    border-bottom-color: #808080;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.welcome-window .title-bar {
    background: linear-gradient(90deg, #000080, #1084d0) !important;
    border-bottom: 2px solid #000080;
}

/* Кнопки окна */
.window-button {
    cursor: pointer !important;
}

.window-button:hover {
    background: #c0c0c0 !important;
}

.window-button:active {
    border-top-color: #808080 !important;
    border-left-color: #808080 !important;
    border-right-color: #dfdfdf !important;
    border-bottom-color: #dfdfdf !important;
}

/* Обычные кнопки */
button {
    cursor: pointer !important;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .welcome-window {
        width: 95% !important;
        height: 85% !important;
        min-width: unset;
    }
}

/* Windows 95 Scrollbar */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: #c0c0c0;
    border: 1px solid #808080;
}

::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border: 1px solid #808080;
    box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #808080;
}