* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    align-items: center;
    background: #4b4a4a;
    color: black;
    cursor: default;
    display: flex;
    font-family: "MS Sans Serif", Tahoma, sans-serif;
    font-size: 11px;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

body,
div,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input,
textarea,
pre,
code {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

input[type="range"] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ############### ЭКРАН ЗАГРУЗКИ ############### */
.boot-screen {
    align-items: center;
    background: #000;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000;
    font-family: "Courier New", monospace;
    overflow: hidden;
}

.boot-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.password-display {
    color: #fff;
    font-size: 26px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.password-input {
    margin-bottom: 20px;
}

.password-slots {
    border: none;
    display: flex;
    justify-content: center;
}

.password-slot {
    background: transparent;
    border: none;
    color: #fff;
    font-family: "Courier New", monospace;
    font-size: 32px;
    height: 40px;
    line-height: 40px;
    outline: none;
    position: relative;
    text-align: center;
    user-select: none;
    width: 40px;
}

.password-slot.active::after {
    animation: blink 0.7s infinite;
    bottom: 5px;
    color: #fff;
    content: '_';
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hint {
    color: #fff;
    font-size: 12px;
    opacity: 0.25;
}

/* ############### ЭКРАН ПРИВЕТСТВИЯ ############### */
.welcome-screen {
    align-items: center;
    background: #000;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    font-family: "Courier New", monospace;
}

.welcome-text {
    color: #ffffff;
    font-family: consolas, sans-serif;
    font-size: 36px;
    font-weight: 100;
    letter-spacing: 2px;
}

/* ############### МОНИТОР ############### */
.monitor {
    background: #008080;
    height: 750px;
    position: relative;
    width: 1054px;
    transition: transform 0.05s linear;
    will-change: transform;
}

#monitor {
    transform: translateY(-30px);
}

.monitor-frame {
    background-image: url(assets/images/monitor.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -770px;
    left: -770px;
    margin-top: 212px;
    pointer-events: none;
    position: absolute;
    right: -770px;
    top: -770px;
    z-index: 10000;
}

.desktop {
    background-color: #008080;
    height: 100%;
    outline: 8px solid #000000;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* ############### ФОН ЗА МОНИТОРОМ (двигается синхронно с монитором) ############### */
.background-layer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    /* Фиксированная ширина */
    height: auto;
    /* Фиксированная высота */
    z-index: -2;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.05s linear;
    will-change: transform;
}

.monitor.moving~.background-layer,
.background-layer.sync-move {
    transition: transform 0.05s linear;
}

/* Контейнер для синхронизации фона и монитора */
.monitor-wrapper {
    position: relative;
    display: inline-block;
}

/* ############### ОКНА ############### */
.window {
    background-color: #c0c0c0;
    border: 2px solid;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    border-right-color: #808080;
    border-bottom-color: #808080;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    cursor: default;
    max-height: calc(100%);
    max-width: calc(100%);
    min-height: 30px;
    min-width: 80px;
    position: absolute;
    transition: none;
}

.window.maximized {
    height: calc(100%);
    left: 0;
    max-height: none;
    max-width: none;
    top: 0;
    width: calc(100%);
}

.window.minimized {
    height: 30px;
    max-width: 300px;
    min-width: 300px;
    overflow: hidden;
    width: 300px;
}

.window.minimized .window-body,
.window.minimized .status-bar {
    display: none;
}

.title-bar {
    align-items: center;
    background: linear-gradient(90deg, #800000, #d06d10);
    border: 1px solid #c0c0c0;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    color: white;
    cursor: move;
    display: flex;
    font-weight: bold;
    justify-content: space-between;
    padding: 3px 5px;
    user-select: none;
}

.title-bar-text {
    align-items: center;
    display: flex;
}

.title-bar-text::before {
    background-image: url(assets/images/ico_win.png);
    background-size: contain;
    content: '';
    display: inline-block;
    height: 16px;
    margin-right: 5px;
    width: 16px;
}

.title-bar-text.no-default-icon::before {
    display: none;
}

.title-bar-controls {
    display: flex;
}

.title-bar-controls button {
    align-items: center;
    background-color: #c0c0c0;
    border: 1px solid;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    border-right-color: #808080;
    border-bottom-color: #808080;
    color: black;
    cursor: pointer;
    display: flex;
    font-size: 9px;
    font-weight: bold;
    height: 14px;
    justify-content: center;
    line-height: 0;
    margin-left: 2px;
    min-width: auto;
    padding: 0;
    width: 16px;
}

.title-bar-controls button:active {
    border-top-color: #808080;
    border-left-color: #808080;
    border-right-color: #dfdfdf;
    border-bottom-color: #dfdfdf;
}

.window-body {
    border: 1px solid #808080;
    border-top-color: #ffffff;
    border-left-color: #ffffff;
    height: calc(100% - 50px);
    margin: 2px;
    overflow-y: auto;
    padding: 10px;
}

.status-bar {
    background-color: #c0c0c0;
    border: 1px solid #808080;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    bottom: 0;
    display: flex;
    font-size: 10px;
    left: 0;
    margin: 2px;
    padding: 2px 5px;
    position: absolute;
    right: 0;
}

.status-bar-field {
    flex-grow: 1;
}

/* ############### ЯРЛЫКИ РАБОЧЕГО СТОЛА ############### */
.desktop-shortcut {
    position: absolute;
    width: 80px;
    height: 82px;
    padding-top: 20px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    padding: 10px 5px 5px 5px;
    transition: background-color 0.1s;
}

.desktop-shortcut:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.desktop-shortcut:active {
    background-color: rgba(0, 0, 128, 0.3);
}

.desktop-shortcut img {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
}

.desktop-shortcut div {
    color: white;
    font-size: 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
}

.desktop-shortcut:active img {
    transform: scale(0.95);
    filter: brightness(0.85) contrast(1.05);
}

.desktop-shortcut:active div {
    transform: scale(0.95) translateY(-1px);
    filter: brightness(0.9) contrast(0.9);
}

/* ############### РЕПОЗИТОРИИ ############### */
.repo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.repo-card {
    border: 1px solid #808080;
    padding: 8px;
    background: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.repo-card:hover {
    background: #d0d0d0;
}

.repo-name {
    font-weight: bold;
    color: #000080;
}

.repo-desc {
    font-size: 10px;
    color: #333;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.repo-meta {
    font-size: 9px;
    color: #666;
    margin-top: 4px;
}

.emoji {
    filter: drop-shadow(0 1px 0.4px rgba(0, 0, 0, 0.6));
}

.all-repos-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.all-repos-table th {
    background: #c0c0c0;
    border: 1px solid #808080;
    padding: 4px 8px;
    text-align: left;
    cursor: pointer;
    user-select: none;
}

.all-repos-table th:hover {
    background: #b0b0b0;
}

.all-repos-table td {
    border: 1px solid #808080;
    padding: 4px 8px;
}

.all-repos-table tr:hover {
    background: #e8e8e8;
}

.repo-link {
    color: #000080;
    text-decoration: none;
    cursor: pointer;
}

.repo-link:hover {
    text-decoration: underline;
}

/* ############### СКРОЛЛБАРЫ ############### */
.window-body::-webkit-scrollbar {
    width: 16px;
    background-color: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
}

.window-body::-webkit-scrollbar-track {
    background: #c0c0c0;
}

.window-body::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    box-shadow: inset 1px 1px 0px #dfdfdf, inset -1px -1px 0px #808080;
}

.window-body::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

.window-body::-webkit-scrollbar-button {
    background-color: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.window-body::-webkit-scrollbar-button:vertical:decrement {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="4" viewBox="0 0 8 4"><polygon points="0,4 4,0 8,4" fill="black"/></svg>');
}

.window-body::-webkit-scrollbar-button:vertical:increment {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="4" viewBox="0 0 8 4"><polygon points="0,0 4,4 8,0" fill="black"/></svg>');
}

.window-body::-webkit-scrollbar-button:horizontal:decrement {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="8" viewBox="0 0 4 8"><polygon points="4,0 0,4 4,8" fill="black"/></svg>');
}

.window-body::-webkit-scrollbar-button:horizontal:increment {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="8" viewBox="0 0 4 8"><polygon points="0,0 4,4 0,8" fill="black"/></svg>');
}

.window-body {
    scrollbar-width: auto;
    scrollbar-color: #c0c0c0 #dfdfdf;
}

/* ############### README КОНТЕНТ ############### */
.readme-content {
    font-family: "MS Sans Serif", Tahoma, Geneva, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
    padding: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.readme-content img {
    max-width: 100%;
    height: auto;
    padding: 2px;
    margin: 10px 0;
}

.readme-content pre {
    background: #f0f0f0;
    border: 1px solid #808080;
    padding: 10px;
    margin: 10px 0;
    overflow-x: auto;
    font-family: "Courier New", monospace;
    font-size: 11px;
    white-space: pre-wrap;
}

.readme-content code {
    background: #f0f0f0;
    padding: 2px 4px;
    font-family: "Courier New", monospace;
    font-size: 11px;
    border: 1px solid #d0d0d0;
}

.readme-content h1 {
    font-size: 18px;
    color: #000080;
    border-bottom: 2px solid #000080;
    padding-bottom: 5px;
    margin: 20px 0 10px 0;
}

.readme-content h2 {
    font-size: 16px;
    color: #000080;
    border-bottom: 1px solid #808080;
    padding-bottom: 4px;
    margin: 18px 0 9px 0;
}

.readme-content h3 {
    font-size: 14px;
    color: #000080;
    margin: 16px 0 8px 0;
}

.readme-content h4 {
    font-size: 13px;
    color: #000000;
    margin: 14px 0 7px 0;
}

.readme-content ul,
.readme-content ol {
    margin: 10px 0 10px 20px;
    padding-left: 10px;
}

.readme-content li {
    margin: 3px 0;
}

.readme-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0;
    border: 1px solid #808080;
}

.readme-content th,
.readme-content td {
    border: 1px solid #808080;
    padding: 4px 8px;
    text-align: left;
}

.readme-content th {
    background: #c0c0c0;
    font-weight: bold;
}

.readme-content tr:nth-child(even) {
    background: #f0f0f0;
}

.readme-content a {
    color: #000080;
    text-decoration: underline;
}

.readme-content a:hover {
    color: #ff0000;
}

.readme-content blockquote {
    border-left: 3px solid #808080;
    margin: 10px 0;
    padding-left: 15px;
    color: #585858;
    background: #e4e4e4;
    border-right: 1px solid #dfdfdf;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 8px;
}

.readme-content hr {
    border: none;
    border-top: 2px solid #808080;
    margin: 20px 0;
    height: 0;
}

/* ############### FULLSCREEN ############### */
:fullscreen #monitor {
    transform: translateY(-60px);
}

/* ############### КНОПКА ОБНОВЛЕНИЯ ############### */
.status-bar .status-bar-field:last-child {
    text-align: right;
    flex-grow: 0;
    margin-left: auto;
    min-width: 60px;
}

.status-bar-refresh {
    cursor: pointer;
    padding: 1px 6px;
    background-color: #c0c0c0;
    border: 1px solid;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    border-right-color: #808080;
    border-bottom-color: #808080;
    font-size: 10px;
    font-family: "MS Sans Serif", Tahoma, sans-serif;
    color: black;
    user-select: none;
    white-space: nowrap;
    display: inline-block;
}

.status-bar-refresh:hover {
    background-color: #d0d0d0;
}

.status-bar-refresh:active {
    border-top-color: #808080;
    border-left-color: #808080;
    border-right-color: #dfdfdf;
    border-bottom-color: #dfdfdf;
    background-color: #a0a0a0;
}

/* ############### УПРАВЛЕНИЕ ВИДОМ ############### */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #808080 #dfdfdf #dfdfdf #808080;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:active {
    border-color: #808080 #dfdfdf #dfdfdf #808080;
    background: #a0a0a0;
}

.window-body button {
    padding: 5px 15px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
    font-family: "MS Sans Serif", Tahoma, sans-serif;
    font-size: 11px;
    cursor: pointer;
}

.window-body button:hover {
    background: #d0d0d0;
}

.window-body button:active {
    border-color: #808080 #dfdfdf #dfdfdf #808080;
    background: #a0a0a0;
}

#view-manager-window input[type="range"] {
    width: 100%;
    height: 20px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #808080 #dfdfdf #dfdfdf #808080;
    outline: none;
}

#view-manager-window input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
}

#view-manager-window button:hover {
    background: #d0d0d0;
}

#view-manager-window button:active {
    border-color: #808080 #dfdfdf #dfdfdf #808080;
    background: #a0a0a0;
}

#view-manager-window button[onclick*="move"] {
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#view-manager-window button[onclick*="reset"] {
    background: #000080;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#view-manager-window button[onclick*="save"] {
    background: #008000;
    color: white;
}

#view-manager-window button[onclick*="load"] {
    background: #800080;
    color: white;
}

#view-manager-window button[onclick*="fullscreen"] {
    background: #808000;
    color: white;
}

#view-manager-window kbd {
    background: #e0e0e0;
    border: 1px solid #808080;
    border-radius: 2px;
    padding: 1px 4px;
    font-family: monospace;
    font-size: 10px;
    box-shadow: 1px 1px 0px #808080;
}

/* ############### АНИМИРОВАННЫЕ РУКИ ############### */
#magic-hands-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000000;
}

#magic-hands-container img {
    position: absolute;
    width: 306.8px;
    height: 213.2px;
    opacity: 1;
    z-index: 1000001;
    will-change: transform, filter;
    transform-origin: center;
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 3px rgba(255, 166, 0, 0.7)) brightness(0);
    }

    50% {
        filter: drop-shadow(0 0 5px rgba(255, 166, 0, 1)) brightness(100);
    }

    100% {
        filter: drop-shadow(0 0 3px rgba(255, 166, 0, 0.7)) brightness(0);
    }
}

@keyframes pulseGlowRed {
    0% {
        filter: drop-shadow(0 0 4px rgba(255, 50, 50, 0.7)) brightness(0);
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(255, 0, 0, 1)) brightness(1.9);
    }

    100% {
        filter: drop-shadow(0 0 4px rgba(255, 50, 50, 0.7)) brightness(0);
    }
}

@keyframes fadeOutHands {
    from {
        opacity: 0.7;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.85);
    }
}

/* ############### МАГИЧЕСКАЯ ВСПЫШКА ############### */
.magic-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000002;
    border-radius: 50%;
    opacity: 0;
    filter: blur(30px);
    mix-blend-mode: screen;
}

.magic-flash.active {
    animation: magicFlash 0.26s ease-out forwards;
}

@keyframes magicFlash {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2);
        filter: blur(20px);
    }

    12% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.6);
        filter: blur(28px);
    }

    25% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(32px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.6);
        filter: blur(40px);
    }
}

/* ############### МАГИЧЕСКИЙ ЗАРЯД ############### */
.magic-charge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000002;
    border-radius: 50%;
    opacity: 0;
    filter: blur(8px);
    transition: all 0.05s linear;
}

.magic-charge.active {
    opacity: 1;
}

/* Анимация взрыва */
@keyframes explosion {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        filter: blur(15px);
    }

    50% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 1;
        filter: blur(40px);
    }

    100% {
        transform: translate(-50%, -50%) scale(8);
        opacity: 0;
        filter: blur(80px);
    }
}

.magic-charge.explode {
    animation: explosion 0.4s ease-out forwards;
}

/* Белый экран перехода */
#white-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-out;
}

#white-overlay.active {
    opacity: 1;
}

/* Для сохранения пропорций на разных экранах */
@media (min-aspect-ratio: 16/9) {
    .background-layer {
        object-fit: cover;
    }
}

@media (max-aspect-ratio: 4/3) {
    .background-layer {
        object-fit: contain;
        background-color: #000;
    }
}

/* ############### ОБОИ РАБОЧЕГО СТОЛА ############### */
.desktop-wallpaper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* ############### ОКНА ВЫБОРА ОБОЕВ И ФОНА ############### */
.wallpaper-selector-window,
.background-selector-window {
    background-color: #c0c0c0;
    border: 2px solid;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    border-right-color: #808080;
    border-bottom-color: #808080;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: absolute;
}

.wallpaper-selector-window .window-body,
.background-selector-window .window-body {
    height: calc(100% - 50px);
    margin: 2px;
    overflow-y: auto;
    padding: 10px;
}

.wallpaper-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wallpaper-option {
    border: 2px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
    background: #e0e0e0;
    padding: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.1s;
}

.wallpaper-option:hover {
    background: #d0d0d0;
    border-color: #808080 #dfdfdf #dfdfdf #808080;
}

.wallpaper-option.selected {
    background: #000080;
    color: white;
    border-color: #808080 #dfdfdf #dfdfdf #808080;
}

.wallpaper-option img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin-bottom: 5px;
}

.wallpaper-option span {
    font-size: 11px;
}

/* ############### ИКОНКА ЗВУКА ############### */
.desktop-shortcut img {
    transition: filter 0.1s;
}

/* ############### МОБИЛЬНОЕ СООБЩЕНИЕ ############### */
#mobile-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Press Start 2P", "Courier New", monospace;
    text-align: center;
    box-sizing: border-box;
}

#mobile-block>div {
    max-width: 90%;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

#mobile-block .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #c0c0c0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-block .icon-wrapper img {
    width: 64px;
    height: 64px;
}

#mobile-block h1 {
    color: #ffffff;
    font-family: "Press Start 2P", monospace;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

#mobile-block p {
    color: #cccccc;
    font-family: "Press Start 2P", monospace;
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

#mobile-block .desktop-badge {
    margin-top: 20px;
    padding: 8px 16px;
    background: #333;
    display: inline-block;
    border-radius: 4px;
    text-align: center;
}

#mobile-block .desktop-badge span {
    color: #fff;
    font-family: "Press Start 2P", monospace;
    font-size: 10px;
}

/* ############### АНИМАЦИЯ ИСЧЕЗНОВЕНИЯ ЦИФР ############### */
.password-display,
.password-slot {
    transition: opacity 0.05s linear;
}

/* ############### КНОПКА ЗАКРЫТЬ ВСЁ ############### */
#shortcut-closeall img {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

#shortcut-closeall:hover {
    background-color: rgba(255, 100, 100, 0.2);
}

#shortcut-closeall:active {
    background-color: rgba(255, 0, 0, 0.3);
}

.loading-notification {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    cursor: default;
}

.loading-notification .title-bar {
    background: linear-gradient(90deg, #800000, #d06d10) !important;
    cursor: default !important;
}

.loading-notification .title-bar:active {
    cursor: default;
}

.loading-notification .window-body {
    background-color: #c0c0c0;
}

#loading-complete-btn {
    transition: all 0.1s;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
    font-family: "MS Sans Serif", Tahoma, sans-serif;
    font-size: 11px;
    cursor: pointer;
}

#loading-complete-btn:active {
    border-color: #808080 #dfdfdf #dfdfdf #808080;
    background: #a0a0a0;
}