body {
    font-family: "Roboto";
    background: transparent;
    background-image: url("https://raw.githubusercontent.com/wa1ker38552/Portfolio-v4/refs/heads/master/assets/wallpaper.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    user-select: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-weight: 300;
}

.navigation {
    justify-content: center;
    width: 100vw;
    padding: 0.3rem;
    background: rgb(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: solid 1px rgb(255, 255, 255, 0.1);
    border-style: solid none none none;
    gap: 0.5rem;
}

.app {
    transition: 0.3s ease-in-out;
    width: 2.5rem;
    height: 2.5rem;
    padding: 5px;
    cursor: pointer;
    border: solid 1px transparent;
    border-radius: 5px;
    image-rendering: pixelated;
}

.app:hover:not(.selected-app) {
    background: rgb(255, 255, 255, 0.1);
}

.app:hover + .tooltip {
    opacity: 1;
}

.selected-app {
    border: solid 1px rgb(255, 255, 255, 0.1);
    background: rgb(255, 255, 255, 0.2);
}

.selected-app:hover {
    border-color: rgb(255, 255, 255, 0.3);
}

.desktop {
    flex: 1;
    position: relative;
}

.window {
    border: solid 1px rgb(255, 255, 255, 0.1);
    background: rgb(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(15px);
    color: white;
    font-weight: 200;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 5px;
}

.center-helper {
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
}

.tooltip {
    opacity: 0;
    transition: 0.3s ease-in-out;
    position: absolute;
    bottom: 3.8rem;
    border: solid 1px rgb(255, 255, 255, 0.1);
    border-style: none none solid none;
    background: rgb(255, 255, 255, 0.2);
    font-size: 0.7rem;
    padding: 5px 8px;
    color: rgb(255, 255, 255, 0.5);
    border-radius: 3px;
    max-width: 10rem;
    backdrop-filter: blur(15px);
}

.main-header {
    text-shadow: rgb(255, 255, 255, 0.2) 4px 0px;
}

.accent {
    font-weight: 500;
    color: white;
}

#textMore {
    cursor: pointer;
    font-size: 0.8rem;
}

.portfolio-button-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
}

button.window:hover {
    border-color: rgb(255, 255, 255, 0.3);
    color: white;
}

button.window {
    padding: 0.5rem;
    font-family: "Roboto";
    font-weight: 300;
    color: rgb(255, 255, 255, 0.5);
}

.absolute {
    position: absolute;
}

.modal-background {
    background: rgb(0, 0, 0, 0.5);
}

.tag {
    border: solid 1px rgb(255, 255, 255, 0.1);
    border-radius: 5px;
    width: fit-content;
    padding: 3px 1rem;
    font-family: "Fira Code";
    font-size: 0.8rem;
    background: rgb(255, 255, 255, 0.2);
    position: relative;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgb(255, 255, 255, 0.5);
    z-index: -1;
    border-radius: 5px;
}

.progress-number {
    position: absolute;
    top: -7px;
    font-size: 0.6rem;
}

.progress-incomplete {
    border-radius: 5px 0 0 5px;
}

.language-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.language-py .progress {background: rgb(31, 143, 255, 0.5);}
.language-py span {color: hsl(210, 100%, 30%);}
.language-html .progress {background: rgba(255, 123, 0, 0.5);}
.language-html span {color: hsla(29, 100%, 30%);}
.language-css .progress {background: rgba(0, 51, 255, 0.5);}
.language-css span {color: hsl(228, 100%, 30%);}
.language-js .progress {background: rgba(255, 221, 0, 0.5);}
.language-js span {color: hsl(52, 100%, 20%);}
.language-lua .progress {background: rgba(85, 0, 255, 0.5);}
.language-lua span {color: hsl(260, 100%, 30%);}
.language-java .progress {background: rgb(3, 117, 144, 0.5);}
.language-java span {color: hsl(191, 96%, 20%);}
.language-swift .progress {background: rgb(255, 65, 40, 0.5);}
.language-swift span {color: hsl(7, 100%, 30%);}
.language-c .progress {background: rgb(171, 187, 206, 0.5);}
.language-c span {color: hsl(213, 26%, 30%);}

.divider {
    margin: 1rem 0;
    height: 1px;
    width: 100%;
    background: radial-gradient(#ffffff50, transparent);
}

.technology {
    font-size: 0.7rem;
    font-family: "Fira Code";
    border: solid 1px rgb(255, 255, 255, 0.1);
    padding: 0 5px;
    transition: 0.3s ease-in-out;
    border-style: none none solid none;
    background: rgb(255, 255, 255, 0.1);
    border-radius: 3px;
    color: rgb(255, 255, 255, 0.8);
}

.technology:hover {
    border-color: rgb(255, 255, 255, 0.5);
}

.modal {
    background-image: url('/assets/grid.png');
    background-size: 10rem;
    background-repeat: repeat;
}

.modal-background {
    background: rgb(0, 0, 0, 0.5) !important;
}

.app-container, .script-container {
    transition: opacity 1s ease-in-out;
}

.project {
    border-radius: 5px;
    border: solid 1px rgb(255, 255, 255, 0.1);
    padding: 0.5rem;
    background: rgb(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 1rem;
}

.fira-code {
    font-family: "Fira Code";
}

.label.fira-code {
    font-size: 0.7rem;
}

.right-container {
    position: absolute;
    right: 0.5rem;
}

.view-button {
    border: solid 1px rgb(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0;
    background: transparent;
    padding: 5px;
    transition: 0.3s ease-in-out;
    cursor: not-allowed;
    width: 1.5rem;
    height: 1.5rem;
}

.view-button img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.2;
    transition: 0.3s ease-in-out;
}

.view-button:hover {
    border-color: rgb(255, 255, 255, 0.2) !important;
}

.active-view-button {
    cursor: pointer;
    border: solid 1px rgb(255, 255, 255, 0.4);
}

.active-view-button img {
    opacity: 0.4;
}

.active-view-button:hover {
    border: solid 1px rgb(255, 255, 255, 0.6) !important;
}

.active-view-button:hover img {
    opacity: 0.6;
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.script-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
}

a {
    text-decoration: none;
}

.glass-button:hover {
    border-color: rgb(255, 255, 255, 0.5) !important;
    color: rgb(255, 255, 255, 0.8) !important;
}

.glass-button {
    transition: border-color 0.3s ease-in-out;
    border-radius: 5px;
    border-color: rgb(255, 255, 255, 0.2);
    background: transparent;
    border-style: solid;
    padding: 3px 0.5rem;
    color: rgb(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.glass-button-selected {
    transition: 0.3s ease-in-out;
    border: solid 1px rgb(255, 255, 255, 0.1);
    background: rgb(255, 255, 255, 0.01);
    backdrop-filter: blur(15px);
}

.social-item {
    display: block;
    border-radius: 50%;
    background: rgb(255, 255, 255, 0.1);
    border: solid 1px rgb(255, 255, 255, 0.1);
    width: 2rem;
    height: 2rem;
    padding: 5px;
    transition: 0.3s ease-in-out;
}

.social-item:hover {
    border-color: rgb(255, 255, 255, 0.3);
}

.social-item img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: 0.3s ease-in-out;
}

.social-item:hover img {
    opacity: 0.8;
}

.social-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.file-app-window {
    padding: 0.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 0.5rem;
}

.window-sidebar {
    padding-right: 0.5rem;
    width: 8rem;
    border: solid 1px rgb(255, 255, 255, 0.3);
    border-style: none solid none none;
}

.sidebar-item {
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.sidebar-item:hover {
    backdrop-filter: blur(15px);
}

.sidebar-item img {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.active-stub {
    position: absolute;
    bottom: 5px;
    height: 2px;
    width: 0.5rem;
    background: rgb(154, 154, 154);
    border-radius: 5px;
}

.notepad-app-window {
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 0;
    backdrop-filter: blur(30px);
}

.notepad-app-header {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.notepad-app-header img {
    width: 1rem;
    height: 1rem;
}

.notepad-content {
    background: transparent;
    border: none;
    padding: 0.5rem;
    resize: none;
    font-family: "Fira Code";
    outline: 0;
    color: rgb(255, 255, 255, 0.8);
    height: 100%;
}

.notepad-content::selection {
    background: rgb(255, 255, 255, 0.2);
}

.tab {
    border: solid 1px transparent;
    padding: 2px 0.5rem;
    font-size: 0.7rem;
    background: rgb(255, 255, 255, 0.1);
    font-family: "Fira Code";
    transition: 0.2s ease-in-out;
    cursor: pointer;
    border-radius: 3px;
}

.active-tab {
    border-color: rgb(255, 255, 255, 0.2);
}

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-thumb {
    border: 4px solid transparent;
    background-clip: padding-box;
    border-radius: 9999px;
    background-color: rgb(255, 255, 255, 0.3);
}