:root {
    --primary: rgb(0, 20, 36);
    --secondary: rgb(255, 255, 255);
    --font: rgb(255, 255, 255);
    --accent: rgb(0, 153, 255);
}

@font-face {
    font-family: "font";

    src: url("../fonts/font.otf");

}

::-webkit-scrollbar {
    width: 10px;
    box-shadow: 0 0 10px var(--accent);
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    box-shadow: 0 0 30px var(--accent);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

body {
    color: var(--font);
    font-family: "font";
    overflow: hidden;
    height: 100vh;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: none;
    background-color: var(--primary);
    z-index: -100;
}

#title {
    text-align: center;
    font-size: 3vh;
    margin: 0;
    width: fit-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 13vh;
}

#small {
    margin: 0;
}

#big {
    font-size: 6vw;
    margin: 0;
    background: -webkit-linear-gradient(#00b7ff, #ffffff);
    text-shadow: 0 0 5vh var(--accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

#big:hover {
    font-size: 6.1vw;
    margin-top: -.1vh;
}

.closing {
    animation: close-browser 0.5s forwards;
}

@keyframes close-browser {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 7vh;
    text-align: center;
    font-size: 1.5vh;
    margin: 0;
    background-color: rgba(0, 20, 36, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    flex-direction: row;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#footer-social {
    position: absolute;
    right: 1vw;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

#disc,
#yt,
#tt {
    margin: 0;
    width: 4vh;
    height: 4vh;
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    border: none;
    border-radius: 12px;
    background-color: rgba(12, 30, 50, 0.7);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#dlogo,
#ytlogo,
#ttlogo {
    max-width: 2.5vh;
    max-height: 2.5vh;
    transition: 0.2s ease-in-out;
    opacity: 0.85;
}

#disc:hover,
#yt:hover,
#tt:hover {
    box-shadow: 0 0 12px var(--accent);
    transform: translateY(-5px);
    background-color: rgba(15, 35, 60, 0.9);
}

#disc:hover #dlogo,
#yt:hover #ytlogo,
#tt:hover #ttlogo {
    opacity: 1;
}

#time {
    display: none;
}

#t {
    display: none;
}

.custom-tooltip {
    position: fixed;
    background-color: none;
    backdrop-filter: blur(0.5vh) sepia(100%) saturate(300%) brightness(70%) hue-rotate(180deg);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    display: block;
    width: auto;
    height: auto;
}

#apps {
    position: absolute;
    bottom: 7vh;
    left: 0;
    width: 100vw;
    height: 0vh;
    border: none;
    z-index: 1000000000000;
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

#apps.active {
    height: 93vh;
}

#buttons {
    position: absolute;
    top: 33vh;
    right: 0vw;
    width: 100vw;
    height: 10vh;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#search-container {
    position: absolute;
    top: 33vh;
    left: 0;
    width: 100vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-bar {
    width: 90%;
    max-width: 600px;
    min-width: 280px;
    height: 5.5vh;
    min-height: 45px;
    background-color: rgba(12, 30, 50, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 1vw;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(97, 187, 255, 0.15) inset;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 8px;
    pointer-events: none;
    transition: color 0.2s ease;
}

#search-bar:focus-within .search-icon {
    color: rgba(255, 255, 255, 0.8);
}

#search-bar:focus-within {
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.35), 0 0 0 2px rgba(97, 187, 255, 0.4) inset;
    transform: translateY(-2px) scale(1.01);
    background-color: rgba(15, 35, 60, 0.85);
}

#search-input {
    flex-grow: 1;
    height: 100%;
    border: none;
    background: none;
    color: var(--font);
    font-family: "font";
    font-size: 1.8vh;
    padding: 0 0.2vw;
    outline: none;
    letter-spacing: 0.02em;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    font-weight: 300;
    transition: color 0.2s ease;
}

#search-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#search-input:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    #search-bar {
        width: 85%;
        min-width: 260px;
        height: 45px;
        padding: 0 1vw;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    #search-bar {
        width: 80%;
        min-width: 240px;
        height: 42px;
        padding: 0 1vw;
        border-radius: 12px;
    }
}

#social-links {
    position: fixed;
    left: 1.5vw;
    top: 1.5vw;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 500;
}

#pinned-apps {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    height: 7vh;
    border: none;
    z-index: 100;
    transition: 0.3s ease-in-out;
    padding: 0 15px;
}

#pinned-app {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    margin: 0 6px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#pinned-app:hover {
    transform: translateY(-7px);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 7px 14px rgba(0, 145, 255, 0.25);
}

.app-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.2s ease;
    padding: 2px;
}

#pinned-app:hover .app-icon {
    transform: scale(1.1);
}

#pinned-app::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#pinned-app:hover::after {
    opacity: 1;
    bottom: -30px;
}

.context-menu {
    position: absolute;
    background-color: rgba(20, 30, 50, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
    z-index: 1000000000000000000000000000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 150px;
    transform-origin: top left;
    animation: contextMenuFadeIn 0.15s ease-out;
}

@keyframes contextMenuFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.context-menu-item {
    padding: 8px 15px;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.context-menu-item:hover {
    background-color: rgba(97, 187, 255, 0.2);
}

#bug-report-notification {
    position: fixed;
    bottom: 8vh;
    right: 20px;
    background-color: rgba(0, 20, 36, 0.8);
    border: 1px solid rgba(0, 183, 255, 0.6);
    border-radius: 50px;
    padding: 10px 16px;
    box-shadow: 0 4px 15px rgba(0, 183, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
}

#bug-report-notification:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 183, 255, 0.4);
    background-color: rgba(0, 30, 60, 0.9);
}

.notification-content {
    display: flex;
    align-items: center;
}

.bug-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
}

.bug-emoji {
    font-size: 20px;
}

.bug-icon svg {
    filter: drop-shadow(0 0 3px rgba(0, 183, 255, 0.7));
    width: 20px;
    height: 20px;
}

.notification-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
}

#bug-report-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 10, 30, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 15px;
    box-sizing: border-box;
}

#bug-report-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    background-color: rgb(7, 18, 39);
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: modalAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgb(6, 20, 40) 0%, rgb(9, 35, 70) 100%);
    border-bottom: 1px solid rgba(0, 183, 255, 0.2);
    position: relative;
}

.header-icon {
    display: flex;
    margin-right: 12px;
    background: linear-gradient(135deg, #0091ff 0%, #00b7ff 100%);
    border-radius: 12px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 145, 255, 0.3);
}

.header-icon svg {
    width: 20px;
    height: 20px;
}

.modal-header h3 {
    margin: 0;
    color: var(--font);
    font-size: 1.2rem;
    flex-grow: 1;
}

#close-modal {
    background: none;
    border: none;
    color: var(--font);
    font-size: 26px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
    opacity: 0.7;
    transition: all 0.2s ease;
}

#close-modal:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {
    padding: 20px;
}

.report-intro {
    margin-top: 0;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--font);
    font-size: 14px;
    font-weight: 500;
}

.form-group textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 183, 255, 0.2);
    background-color: rgba(7, 18, 39, 0.6);
    color: var(--font);
    font-family: "font";
    resize: vertical;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 183, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(0, 145, 255, 0.2);
}

.form-tabs {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 183, 255, 0.2);
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid rgba(0, 183, 255, 0.2);
    background-color: rgba(7, 18, 39, 0.5);
}

.tab-btn {
    padding: 10px 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: "font";
    font-size: 14px;
    cursor: pointer;
    flex: 1;
    transition: all 0.2s ease;
    position: relative;
}

.tab-btn.active {
    color: #00b7ff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0091ff, #00b7ff);
}

.tab-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 183, 255, 0.05);
}

.tab-content {
    display: none;
    padding: 15px;
    background-color: rgba(7, 18, 39, 0.3);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.upload-container {
    border: 2px dashed rgba(0, 183, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 183, 255, 0.05);
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.upload-container:hover {
    border-color: rgba(0, 183, 255, 0.5);
    background-color: rgba(0, 183, 255, 0.1);
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.upload-label svg {
    margin-bottom: 10px;
    opacity: 0.8;
}

.upload-label span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .form-row {
        flex-direction: row;
    }
}

.form-col {
    flex: 1;
    min-width: 0;
}

select,
input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 183, 255, 0.2);
    background-color: rgba(7, 18, 39, 0.6);
    color: var(--font);
    font-family: "font";
    font-size: 14px;
    appearance: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(0, 183, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

select:focus,
input[type="text"]:focus {
    outline: none;
    border-color: rgba(0, 183, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(0, 145, 255, 0.2);
}

#image-preview {
    margin-top: 10px;
    max-width: 100%;
    max-height: 150px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

#image-preview img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.image-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 8px;
    border-radius: 6px;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.remove-image:hover {
    opacity: 1;
    background: rgba(255, 0, 0, 0.7);
    transform: scale(1.1);
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.status-wrapper {
    width: 100%;
    margin-bottom: 10px;
}

#submit-bug {
    background: linear-gradient(135deg, #0091ff 0%, #00b7ff 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: "font";
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 145, 255, 0.3);
}

#submit-bug:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 145, 255, 0.4);
}

#submit-bug:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 145, 255, 0.2);
}

#submit-bug:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#submission-status {
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    opacity: 1;
    transform: translateY(0);
}

#submission-status.success {
    background-color: rgba(0, 180, 0, 0.15);
    border: 1px solid rgba(0, 180, 0, 0.3);
    color: rgb(0, 255, 0);
}

#submission-status.error {
    background-color: rgba(180, 0, 0, 0.15);
    border: 1px solid rgba(180, 0, 0, 0.3);
    color: rgb(255, 100, 100);
}

.hidden {
    display: none !important;
}

#open-apps {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 7vh;
    overflow-x: auto;
    max-width: 30%;
    scrollbar-width: none;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1001;
    pointer-events: auto;
}

#open-apps::-webkit-scrollbar {
    display: none;
}

.taskbar-item {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    margin: 0 6px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    pointer-events: auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.taskbar-item:hover {
    transform: translateY(-7px);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 7px 14px rgba(0, 145, 255, 0.25);
}

.taskbar-item.active {
    background-color: rgba(0, 145, 255, 0.25);
    border-color: rgba(0, 145, 255, 0.5);
    box-shadow: 0 0 12px rgba(0, 145, 255, 0.4);
}

.taskbar-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0091ff, #00c3ff);
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 2px rgba(0, 145, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 6px rgba(0, 145, 255, 0.8);
    }
}

.taskbar-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 6px;
    pointer-events: none;
    transition: transform 0.2s ease;
    padding: 2px;
}

.taskbar-item:hover .taskbar-icon {
    transform: scale(1.1);
}

.taskbar-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.taskbar-item:hover::after {
    opacity: 1;
    bottom: -30px;
}

@keyframes taskbar-bounce {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-12px);
    }

    70% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.taskbar-item.bounce {
    animation: taskbar-bounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#logos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 7vh;
    height: 7vh;
    text-align: center;
    font-size: 1.5vh;
    margin: 0;
    align-items: center;
    justify-content: center;
    display: flex;
}

#flogo {
    margin: 0;
    padding: 5px;
    max-width: 5.5vh;
    max-height: 5.5vh;
    rotate: 10deg;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    z-index: 1000;
    filter: drop-shadow(0 0 5px rgba(0, 145, 255, 0.5));
}

#flogo:hover {
    rotate: -10deg;
    max-width: 6vh;
    max-height: 6vh;
    filter: drop-shadow(0 0 8px rgba(0, 145, 255, 0.8));
}

#apps-tooltip {
    position: absolute;
    bottom: 8vh;
    left: 1.5vh;
    background: rgba(7, 18, 39, 0.7);
    color: var(--font);
    padding: 8px 16px;
    border-radius: 12px;
    font-family: "font";
    font-size: 1.1em;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    box-shadow: 0 4px 24px 0 rgba(0, 153, 255, 0.18), 0 2px 8px rgba(0, 0, 0, 0.25);
    border: 1.5px solid var(--accent);
    backdrop-filter: blur(8px) saturate(160%);
    z-index: 1000;
    text-shadow: 0 1px 8px rgba(0, 153, 255, 0.15);
}

#apps-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

#apps-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 24px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--accent);
    filter: drop-shadow(0 2px 6px rgba(0, 153, 255, 0.18));
}

.taskbar-separator {
    height: 20px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
}

@keyframes minimize-window {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }

    100% {
        opacity: 0;
        transform: scale(0.2) translate(0, 300px);
    }
}

@keyframes maximize-window {
    0% {
        opacity: 0;
        transform: scale(0.2) translate(0, 300px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

.window.minimizing {
    animation: minimize-window 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: bottom center;
    pointer-events: none;
}

.window.maximizing {
    animation: maximize-window 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: bottom center;
}