:root {
    --ink: #191a1d;
    --desktop-deep: #18202b;
    --desktop-mid: #273545;
    --desktop-warm: #5b4636;

    --panel: #dedbd1;
    --panel-light: #f5f2ea;
    --panel-mid: #c8c5bc;
    --panel-shadow: #6a6b6d;

    --title: #263747;
    --title-active: #1e3f58;
    --title-warm: #94633f;

    --orange: #d58a45;
    --cream: #f2e4cc;
    --brown: #5d3928;
    --cyan: #6fb8c3;
    --cyan-dark: #36737d;
    --blue: #365a77;

    --screen: #101922;
    --screen-text: #d6e0e4;
    --muted: #60656a;
    --danger: #7d352e;
    --success: #3c6a56;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    overflow: hidden;
    color: var(--ink);
    background: #050608;
    font-family: Tahoma, "MS Sans Serif", Arial, sans-serif;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.hidden {
    display: none !important;
}

/* =========================
   BIOS
   ========================= */

.boot-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #050608;
}

.bios-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 28px 34px 22px;
    color: #d7d7d7;
    background: #050608;
    font: 15px/1.45 "Courier New", Consolas, monospace;
}

.bios-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #8d8d8d;
}

.bios-top strong {
    color: white;
    letter-spacing: 0.08em;
}

.bios-top span {
    color: #969696;
}

.bios-output {
    flex: 1;
    margin: 22px 0 12px;
    overflow: hidden;
    color: #d5d5d5;
    white-space: pre-wrap;
}

.bios-output .ok {
    color: #f1f1f1;
}

.bios-output .accent {
    color: #d9b17a;
}

.bios-output .muted {
    color: #929292;
}

.bios-footer {
    display: flex;
    gap: 28px;
    padding-top: 9px;
    border-top: 1px solid #484848;
    color: #8c8c8c;
    font-size: 12px;
}

/* =========================
   SYSTEM LOADER
   ========================= */

.loader-screen {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    color: #e7ebee;
    background:
        radial-gradient(circle at 50% 35%, rgba(111, 184, 195, 0.09), transparent 32%),
        linear-gradient(145deg, #111820, #1c2732 60%, #11161d);
    text-align: center;
}

.loader-logo {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid #607b8b;
    background:
        linear-gradient(145deg, rgba(213, 138, 69, 0.28), rgba(54, 115, 125, 0.22)),
        #1b2731;
    box-shadow:
        inset 0 0 0 5px #18212a,
        0 14px 34px rgba(0, 0, 0, 0.35);
}

.loader-mark {
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 46px;
    font-weight: bold;
}

.loader-screen h1 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 42px;
    letter-spacing: 0.02em;
}

.loader-screen p {
    margin: 7px 0 27px;
    color: #aeb8bf;
    font-size: 13px;
}

.loader-track {
    width: min(360px, 72vw);
    height: 18px;
    padding: 3px;
    border: 2px inset #6d7377;
    background: #0e1318;
}

.loader-segments {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        #638794 0,
        #638794 15px,
        #17222a 15px,
        #17222a 20px
    );
    animation: loader-slide 1.1s linear infinite;
    background-size: 80px 100%;
}

.loader-screen small {
    margin-top: 15px;
    color: #7f8c95;
    font-family: "Courier New", monospace;
}

/* =========================
   LOGIN
   ========================= */

.login-screen {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        linear-gradient(90deg, rgba(213, 138, 69, 0.06), transparent 35%, rgba(111, 184, 195, 0.05)),
        linear-gradient(145deg, #202b36, #151c24);
}

.login-shell {
    width: min(520px, calc(100% - 34px));
    border: 2px solid #111820;
    background: var(--panel);
    box-shadow: 12px 18px 45px rgba(0, 0, 0, 0.43);
}

.login-header {
    display: flex;
    justify-content: space-between;
    padding: 13px 16px;
    color: white;
    background: linear-gradient(90deg, var(--title-active), #385468);
    font-size: 13px;
}

.login-brand {
    font-family: Georgia, serif;
    font-weight: bold;
}

.login-user {
    display: flex;
    width: calc(100% - 42px);
    align-items: center;
    gap: 18px;
    margin: 28px 21px 18px;
    padding: 14px;
    border: 2px outset var(--panel);
    color: var(--ink);
    background: var(--panel-light);
    text-align: left;
    cursor: pointer;
}

.login-user:hover {
    background: white;
}

.login-user:active {
    border-style: inset;
}

.login-user img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border: 2px inset var(--panel);
    background: var(--cream);
}

.login-user-text {
    display: grid;
    gap: 5px;
}

.login-user-text strong {
    font-family: Georgia, serif;
    font-size: 24px;
}

.login-user-text small {
    color: var(--muted);
}

.login-user-text em {
    margin-top: 7px;
    color: var(--cyan-dark);
    font-style: normal;
    font-size: 12px;
}

.login-hint {
    margin: 0 21px 22px;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

/* =========================
   DESKTOP
   ========================= */

.desktop {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 16%, rgba(111, 184, 195, 0.15), transparent 28%),
        radial-gradient(circle at 30% 80%, rgba(213, 138, 69, 0.12), transparent 33%),
        linear-gradient(140deg, var(--desktop-deep), var(--desktop-mid) 62%, #332c2a);
}

.wallpaper-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.wallpaper-grid::after {
    position: absolute;
    right: 6vw;
    bottom: 11vh;
    width: min(420px, 43vw);
    height: min(420px, 43vw);
    border: 1px solid rgba(111, 184, 195, 0.24);
    border-radius: 50%;
    box-shadow:
        0 0 0 32px rgba(111, 184, 195, 0.03),
        0 0 0 64px rgba(213, 138, 69, 0.025);
    content: "";
}

/* Desktop icons */

.desktop-icons {
    position: absolute;
    top: 18px;
    left: 14px;
    z-index: 2;
    display: grid;
    width: 108px;
    gap: 8px;
}

.desktop-icon {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 7px 4px;
    border: 1px solid transparent;
    color: white;
    background: transparent;
    text-decoration: none;
    text-shadow: 1px 1px 2px #000;
    cursor: pointer;
}

.desktop-icon:hover,
.desktop-icon:focus-visible {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.desktop-icon > span:last-child {
    max-width: 102px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}

.icon-tile {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px outset #b8bec0;
    color: white;
    background: #344e62;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.28);
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: bold;
    text-shadow: none;
}

.icon-profile {
    color: var(--cream);
    background: linear-gradient(145deg, var(--orange), var(--brown));
}

.icon-network {
    background: linear-gradient(145deg, #5e8792, #315664);
}

.icon-lock {
    background: linear-gradient(145deg, #4d6275, #222f3b);
}

.icon-commissions {
    color: #3f2d20;
    background: linear-gradient(145deg, #efd09a, #c88546);
}

.icon-gallery {
    background: linear-gradient(145deg, #6a503f, #3d3028);
}

/* =========================
   WINDOWS
   ========================= */

.os-window {
    position: absolute;
    top: var(--window-y, 12vh);
    left: var(--window-x, 18vw);
    z-index: 10;
    display: none;
    width: var(--window-w, 720px);
    max-width: calc(100vw - 124px);
    max-height: calc(100vh - 82px);
    overflow: hidden;
    border: 2px outset var(--panel);
    background: var(--panel);
    box-shadow: 7px 9px 20px rgba(0, 0, 0, 0.38);
}

.os-window.window-open {
    display: block;
}

.os-window.active-window {
    z-index: 40;
}

.os-window.maximized {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    max-width: 100vw;
    height: calc(100vh - 39px);
    max-height: calc(100vh - 39px);
}

.os-window.minimized {
    display: none;
}

.titlebar {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    padding: 4px 5px 4px 7px;
    color: #d8dce0;
    background: linear-gradient(90deg, #263747, #3b5366);
    user-select: none;
    touch-action: none;
}

.active-window .titlebar {
    color: white;
    background:
        linear-gradient(90deg, var(--title-active), #36586d 70%, #6d4b36);
}

.titlebar-title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
}

.titlebar-title strong {
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-app-icon {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--cream);
    background: rgba(0, 0, 0, 0.2);
    font-family: Georgia, serif;
    font-size: 12px;
    font-weight: bold;
}

.window-buttons {
    display: flex;
    gap: 3px;
}

.window-buttons button {
    width: 25px;
    height: 23px;
    padding: 0;
    border: 2px outset var(--panel);
    color: var(--ink);
    background: var(--panel);
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
}

.window-buttons button:active {
    border-style: inset;
}

.menu-strip {
    display: flex;
    gap: 18px;
    padding: 5px 8px;
    border-bottom: 1px solid #9c9b95;
    color: #303235;
    background: var(--panel);
    font-size: 12px;
}

.window-body {
    max-height: calc(100vh - 160px);
    overflow: auto;
    padding: 17px;
    background: var(--panel);
}

.maximized .window-body {
    max-height: calc(100vh - 112px);
}

/* Profile */

.profile-layout {
    display: grid;
    grid-template-columns: 196px 1fr;
    gap: 18px;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.avatar-frame {
    padding: 7px;
    border: 2px inset var(--panel);
    background: var(--panel-light);
}

.avatar-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid #777;
}

.profile-status {
    padding: 9px;
    border: 1px solid #a2a098;
    background: var(--panel-light);
    font-size: 11px;
}

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--success);
}

.profile-main {
    min-width: 0;
}

.profile-heading {
    display: grid;
    grid-template-columns: 1fr 188px;
    gap: 17px;
    align-items: start;
}

.system-kicker {
    margin: 0 0 7px;
    color: var(--cyan-dark);
    font: bold 11px/1.3 "Courier New", monospace;
    letter-spacing: 0.06em;
}

.profile-main h1 {
    margin: 0 0 10px;
    color: #273543;
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 43px);
}

.profile-main h1 span {
    color: #9b5e32;
}

.lead {
    margin: 0;
    color: #4f5458;
    line-height: 1.55;
}

/* CSS synth mascot */

.synth-card {
    display: grid;
    min-height: 174px;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 13px;
    border: 2px inset var(--panel);
    background:
        linear-gradient(rgba(111, 184, 195, 0.05), rgba(213, 138, 69, 0.07)),
        #202b35;
    color: #e7ecee;
    text-align: center;
}

.synth-card strong {
    font-family: Georgia, serif;
}

.synth-card small {
    color: #92a4ac;
    font: 9px "Courier New", monospace;
}

.synth-head {
    position: relative;
    width: 112px;
    height: 88px;
}

.synth-visor {
    position: absolute;
    inset: 25px 7px 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 2px solid #5d909b;
    border-radius: 42% 42% 48% 48%;
    background: #0d141b;
    box-shadow: inset 0 0 15px rgba(111, 184, 195, 0.14);
}

.synth-visor i {
    width: 27px;
    height: 8px;
    border-radius: 50%;
    background: #8ec7ce;
    box-shadow: 0 0 8px rgba(142, 199, 206, 0.58);
    transform: rotate(-5deg);
}

.synth-visor i:last-child {
    transform: rotate(5deg);
}

.synth-crest {
    position: absolute;
    top: 1px;
    width: 23px;
    height: 45px;
    border: 2px solid #b77642;
    border-radius: 55% 55% 15% 15%;
    background: linear-gradient(#e2a461, #684432);
}

.synth-crest.left {
    left: 20px;
    transform: rotate(-13deg);
}

.synth-crest.right {
    right: 20px;
    transform: rotate(13deg);
}

.skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 17px 0;
}

.skill-chips span {
    padding: 5px 8px;
    border: 1px solid #9d9c95;
    background: var(--panel-light);
    color: #4b5054;
    font-size: 11px;
}

.profile-panels {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 12px;
}

.info-panel {
    padding: 13px;
    border: 2px inset var(--panel);
    background: #f0eee7;
}

.info-panel h2 {
    margin: 0 0 8px;
    color: #354958;
    font-family: Georgia, serif;
    font-size: 17px;
}

.info-panel p {
    margin: 0;
    color: #50555a;
    font-size: 13px;
    line-height: 1.55;
}

.quick-actions {
    display: grid;
    gap: 7px;
}

.profile-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #aaa9a2;
    color: #686d70;
    font: 10px "Courier New", monospace;
}

/* Classic controls */

.classic-button {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 2px outset var(--panel);
    color: var(--ink);
    background: var(--panel);
    text-decoration: none;
    cursor: pointer;
}

.classic-button:hover {
    background: var(--panel-light);
}

.classic-button:active {
    border-style: inset;
}

.wide-button {
    width: 100%;
}

/* Socials */

.address-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    padding: 6px;
    border: 2px inset var(--panel);
    background: white;
    font-size: 11px;
}

.address-bar code {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.social-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 10px;
    border: 2px outset var(--panel);
    color: var(--ink);
    background: var(--panel-light);
    text-decoration: none;
}

.social-grid a:hover {
    background: white;
}

.social-grid a:active {
    border-style: inset;
}

.social-grid b {
    color: #324a5c;
}

.social-grid small {
    color: #777b7e;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 10px;
    border: 2px inset var(--panel);
    background: #efede6;
}

.contact-box strong,
.contact-box code {
    display: block;
}

.contact-box code {
    margin-top: 4px;
    color: var(--cyan-dark);
}

.small-status {
    min-height: 16px;
    margin: 8px 0 0;
    color: var(--success);
    font-size: 11px;
}

/* =========================
   ZERCRYPT
   ========================= */

.crypt-banner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px;
    border: 2px inset var(--panel);
    color: #e8ecee;
    background:
        linear-gradient(90deg, #1a2732, #2f4351 68%, #5c4434);
}

.crypt-banner h2 {
    margin: 3px 0 5px;
    font-family: Georgia, serif;
    font-size: 24px;
}

.crypt-banner p:last-child {
    margin: 0;
    color: #b4c0c6;
    font-size: 12px;
}

.security-badge {
    align-self: start;
    padding: 5px 7px;
    border: 1px solid #91adb4;
    color: #cbe4e7;
    background: rgba(111, 184, 195, 0.11);
    font: 10px "Courier New", monospace;
    white-space: nowrap;
}

.app-tabs {
    display: flex;
    gap: 4px;
    margin-top: 11px;
    border-bottom: 1px solid #858780;
}

.app-tab {
    padding: 8px 13px;
    border: 2px outset var(--panel);
    background: var(--panel);
    cursor: pointer;
}

.app-tab.active {
    border-style: inset;
    background: var(--panel-light);
    font-weight: bold;
}

.crypt-panel {
    display: none;
    padding: 17px 4px 2px;
}

.crypt-panel.active {
    display: block;
}

.crypt-panel label:not(.file-picker) {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 12px;
}

.crypt-panel textarea {
    width: 100%;
    min-height: 82px;
    resize: vertical;
    padding: 9px;
    border: 2px inset var(--panel);
    outline: none;
    color: #dce7e9;
    background: var(--screen);
    font: 12px/1.4 "Courier New", monospace;
}

.crypt-panel textarea:focus {
    box-shadow: inset 0 0 0 1px var(--cyan);
}

.file-picker {
    position: relative;
    display: grid;
    min-height: 120px;
    place-items: center;
    align-content: center;
    gap: 6px;
    margin-top: 13px;
    padding: 14px;
    border: 2px inset var(--panel);
    background: #efede6;
    text-align: center;
    cursor: pointer;
}

.compact-picker {
    min-height: 86px;
}

.file-picker:hover {
    background: white;
}

.file-picker input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-picker-icon {
    color: var(--cyan-dark);
    font-size: 30px;
}

.file-picker small {
    color: var(--muted);
}

.action-button {
    width: 100%;
    margin-top: 13px;
    padding: 11px;
    border: 2px outset var(--panel);
    color: white;
    background: linear-gradient(#46768a, #315a6c);
    font-weight: bold;
    cursor: pointer;
}

.action-button:hover {
    filter: brightness(1.08);
}

.action-button:active {
    border-style: inset;
}

.action-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.secondary-action {
    background: linear-gradient(#9b683f, #71492f);
}

.operation-status {
    min-height: 20px;
    margin: 10px 0 0;
    padding: 7px;
    border: 2px inset var(--panel);
    color: #32434e;
    background: #f1efe8;
    font: 11px "Courier New", monospace;
    text-align: center;
}

.manual-list {
    display: grid;
    gap: 9px;
}

.manual-list article {
    padding: 12px;
    border: 2px inset var(--panel);
    background: #efede6;
}

.manual-list b {
    display: block;
    margin-bottom: 7px;
    color: #334c5d;
}

.manual-list p {
    margin: 0;
    line-height: 1.5;
}

.manual-list code {
    display: block;
    margin-top: 5px;
    padding: 5px;
    overflow-x: auto;
    background: #151d24;
    color: #d9e5e7;
    white-space: nowrap;
}

.warning-note {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #9b765b;
    background: #efe0c9;
    color: #5e3a27;
}

/* =========================
   TASKBAR + START MENU
   ========================= */

.taskbar {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 500;
    display: grid;
    height: 40px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 5px;
    padding: 4px;
    border-top: 2px outset var(--panel);
    background: var(--panel);
}

.start-button {
    display: flex;
    height: 31px;
    align-items: center;
    gap: 7px;
    padding: 0 10px 0 5px;
    border: 2px outset var(--panel);
    background: var(--panel);
    font-weight: bold;
    cursor: pointer;
}

.start-button.active,
.start-button:active {
    border-style: inset;
}

.start-mark {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--cream);
    background: linear-gradient(145deg, var(--orange), var(--brown));
    font-family: Georgia, serif;
}

.task-buttons {
    display: flex;
    min-width: 0;
    gap: 4px;
    overflow: hidden;
}

.task-button {
    min-width: 112px;
    max-width: 190px;
    height: 31px;
    overflow: hidden;
    padding: 0 10px;
    border: 2px outset var(--panel);
    background: var(--panel);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.task-button.active {
    border-style: inset;
    background: var(--panel-light);
    font-weight: bold;
}

.system-tray {
    display: flex;
    height: 31px;
    align-items: center;
    gap: 8px;
    padding: 0 9px;
    border: 2px inset var(--panel);
    background: var(--panel-mid);
    font-size: 11px;
}

.tray-status {
    color: var(--cyan-dark);
}

.start-menu {
    position: absolute;
    bottom: 39px;
    left: 3px;
    z-index: 700;
    display: grid;
    width: 300px;
    min-height: 310px;
    grid-template-columns: 38px 1fr;
    border: 2px outset var(--panel);
    background: var(--panel);
    box-shadow: 6px 8px 22px rgba(0, 0, 0, 0.42);
}

.start-brand {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 9px 0;
    color: #dbe3e6;
    background: linear-gradient(#3c5364, #293844);
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.03em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.start-items {
    display: grid;
    align-content: start;
    padding: 6px;
}

.start-items button,
.start-items a {
    display: flex;
    min-height: 45px;
    align-items: center;
    gap: 10px;
    padding: 6px 9px;
    border: 1px solid transparent;
    color: var(--ink);
    background: transparent;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}

.start-items button:hover,
.start-items a:hover {
    color: white;
    background: var(--title-active);
}

.start-items span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid #999;
    background: white;
    color: #405b6c;
    font-weight: bold;
}

.start-separator {
    height: 1px;
    margin: 5px 3px;
    background: #9c9c96;
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes loader-slide {
    to {
        background-position: 80px 0;
    }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 760px) {
    .bios-screen {
        padding: 17px;
        font-size: 11px;
    }

    .bios-top {
        display: grid;
        gap: 5px;
    }

    .bios-footer {
        gap: 12px;
        font-size: 9px;
    }

    .desktop-icons {
        width: 90px;
    }

    .os-window {
        top: 8px !important;
        left: 7px !important;
        width: calc(100vw - 14px) !important;
        max-width: none;
        max-height: calc(100vh - 54px);
    }

    .window-body {
        max-height: calc(100vh - 135px);
    }

    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        display: grid;
        grid-template-columns: 112px 1fr;
        align-items: start;
    }

    .profile-sidebar .wide-button {
        grid-column: 2;
    }

    .profile-heading,
    .profile-panels {
        grid-template-columns: 1fr;
    }

    .synth-card {
        display: none;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .profile-footer {
        display: grid;
    }

    .crypt-banner {
        display: grid;
    }

    .task-button {
        min-width: 72px;
    }

    .system-tray {
        padding: 0 5px;
    }

    .tray-status {
        display: none;
    }
}
