* {
    margin: 0;
    padding: 0;
    font-family: "Ubuntu", sans-serif;
    font-size: 12px;
}
body {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}
taskbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 640px;
    height: 40px;
    background-color: rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 5px;
    border-left: 1px solid rgb(84, 84, 84);
    border-top: 1px solid rgb(84, 84, 84);
    box-shadow: 0 0 14px 0px rgba(0, 0, 0, .7);
    border-radius: 20px;
    padding: 0 6px;
    position: relative;
    z-index: 99;
}
taskbar button {
    width: 50px;
    height: 30px;
    background-color: rgba(74, 156, 187, 0.1);
    background-image: url('../media/system/assinatura.png');
    background-position: center;
    background-size: 35px;
    background-repeat: no-repeat;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border-right: 1px solid rgb(84, 84, 84);
    border-bottom: 1px solid rgb(84, 84, 84);
    min-width: 50px;
    margin-right: 10px;
    transition: all .1s ease;
}
taskbar button:active {
    box-shadow: inset 0 0 3px 2px rgba(0, 0, 0, 0.6);
    background-size: 32px;
}
taskbar tasks {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow: hidden;
}
taskbar task {
    display: inline-block;
    text-align: center;
    line-height: 22px;
    padding: 0 5px;
    min-width: 30px;
    height: 22px;
    background: rgba(74, 156, 187, 0.1);
    border: none;
    box-shadow: inset 0 0 3px 2px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    border-right: 1px solid rgb(84, 84, 84);
    border-bottom: 1px solid rgb(84, 84, 84);
    color: #bdbdbd;
    overflow: hidden;
    user-select: none;
}
taskbar task.minimized {
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.5);
}
taskbar tray {
    color: #bdbdbd;
    padding: 0 5px;
    user-select: none;
}
context {
    position: absolute;
    background-color: rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-left: 1px solid rgb(84, 84, 84);
    border-top: 1px solid rgb(84, 84, 84);
    box-shadow: 0 0 14px 0px rgba(0, 0, 0, .7);
    border-radius: 4px;
    padding: 5px 2px;
}
taskbar context {
    backdrop-filter: none;
    background-color: rgba(0,0,0,.80);
}
context ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}
context li {
    user-select: none;
    padding: 5px 10px 5px 20px;
    color: #858585;
    white-space: nowrap;
}
context li:hover {
    background-color: rgba(255,255,255,.1);
}
desktop {
    position: absolute;
    left: 0;
    top: 0px;
    height: calc(100dvh - 60px);
    margin: 0;
    padding: 8px 8px 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-wrap: wrap;
}
window {
    display: block;
    position: absolute;
    background-color: #323232;
    border-left: 1px solid rgb(84, 84, 84);
    border-top: 1px solid rgb(84, 84, 84);
    box-shadow: 0 0 14px 0px rgba(0, 0, 0, .7);
    border-radius: 5px;
    overflow: auto;
    max-height: 100dvh;
}
window titleline {
    height: 22px;
    padding: 0 5px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2a2a2a;
    border-bottom: 1px solid;
    box-shadow: inset 0px -11px 5px -13px #000;
}
window titleline wintitle {
    user-select: none;
    color: #858585;
    font-size: 12px;
    font-weight: 600;
}
window controls {
    display: flex;
    align-items: center;
    gap: 4px;
}
window controls control {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0px 3px 1px rgba(0, 0, 0, 0.9);
    transition: box-shadow .3s ease;
}
window controls control:hover {
    box-shadow: inset 0 0px 3px 2px rgba(0, 0, 0, 0.9);
}
window controls control:active {
    box-shadow: inset 0 0px 6px 2px rgba(0, 0, 0, 0.9);
}
window content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 10px 20px;
    overflow: auto;
}
window content ei, ec {
    display: flex;
    align-items: center;
    gap: 10px;
}
window content l {
    width: 100%;
    display: inline-block;
    max-width: 140px;
    color: #858585;
    user-select: none;
}
window content input, select {
    width: 100%;
    background-color: #282727;
    color: #858585;
    outline: none;
    padding: 3px 5px;
    border: none;
    border-radius: 4px;
    box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.5);
}
window content option:hover {
    background: #ffe066;
    color: #1f2937;
}
window content eb {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    padding-top: 15px;
}
window content eb button {
    width: 95px;
    height: 21px;
    font-size: 12px;
    text-align: center;
    line-height: 21px;
    border: none;
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    background: #323232;
    color: #858585;
    outline: none;
    transition: all .1s ease;
}
window content eb button:active {
    box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.5);
    font-size: 11px;
    color: #636363;
}
window content ex exnav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}
window content ex exnav exback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 22px;
    border-radius: 3px;
    transition: box-shadow .1s ease;
}
window content ex exnav exback::before {
    content: '◄';
    font-size: 14px;
    color: #858585;
    transition: all .1s ease;
}
window content ex exnav exback:hover {
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.5);
}
window content ex exnav exback:active {
    box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.5);
}
window content ex exnav exback:active::before {
    font-size: 13px;
    color: #636363;
}
window content ex exnav exaddressbar {
    display: block;
    width: 100%;
    background: #2a2a2a;
    border-right: 1px solid rgb(84, 84, 84);
    border-bottom: 1px solid rgb(84, 84, 84);
    border-radius: 4px;
    box-shadow: inset 0 0 2px 0px rgba(0, 0, 0, 0.5);
    padding: 4px 5px;
    color: #868686;
 }
window content ex exview {
    background: #2a2a2a;
    border-right: 1px solid rgb(84, 84, 84);
    border-bottom: 1px solid rgb(84, 84, 84);
    border-radius: 4px;
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.5);
    padding: 3px 5px;
}
window content ex exview {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
    align-content: flex-start;
}
exdir,
exfile {
    padding: 32px 2px 5px;
    background-image: url('../media/system/folder.png');
    background-position: center 2px;
    background-size: 27px;
    background-repeat: no-repeat;
    color: #b7b7b7;
    width: 56px;
    text-align: center;
    user-select: none;
    word-break: break-word;
}
exdir:hover,
exfile:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
exfile { 
    background-image: url('../media/system/file.png');
}
start {
    position: absolute;
    bottom: 45px;
    background-color: rgba(0,0,0,.80);
    border-left: 1px solid rgb(84, 84, 84);
    border-top: 1px solid rgb(84, 84, 84);
    box-shadow: 0 0 14px 0px rgba(0, 0, 0, .7);
    border-radius: 5px;
    padding: 65px 0 10px;
}
start ul {
    list-style: none;
}
start ul li {
    padding: 5px 20px 5px 40px;
    color: #bdbdbd;
    user-select: none;
}
start ul li:hover {
    background-color: rgba(255,255,255,.1);
    color: #a5a5a5;
}
window snakeground {
    width: 250px;
    height: 250px;
    background: #000;
    position: relative;
}
window snakeground snake {
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    background: yellow;
}
window snakeground food {
    position: absolute;
    width: 10px;
    height: 10px;
    background: red;
}
window snakeground snakecontrol {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}
window snakeground snakeright {
    grid-column-start: 3;
    grid-row-start: 2;
}
window snakeground snakebottom {
    grid-column-start: 2;
    grid-row-start: 3;
}
window snakeground snakeleft {
    grid-column-start: 1;
    grid-row-start: 2;
}
window snakeground snaketop {
    grid-column-start: 2;
    grid-row-start: 1;
}

