}
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    #splash-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #030712;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 9999;
        animation: fadeOut 2.5s ease-in-out forwards;
    }

    #splash-screen img {
        width: 120px;
    }

  
    #progress-bar {
        width: 25%;
        height: 4px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        margin-top: 10px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        overflow: hidden;
    }

    #progress-bar-fill {
        height: 100%;
        background-color: white;
        width: 0%;
        transition: width 2s ease-in-out;
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            visibility: hidden;
        }
    }

    #dock {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 44.44%;
        display: flex;
        justify-content: center;
        background: #414654;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 10px;
        z-index: 10;
        border-radius: 12px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    }

    #dock img {
        width: 52px;
        height: 52px;
        margin: 0 16px;
        transition: transform 0.2s ease-in-out;
    }

    #dock img:hover {
        transform: scale(1.2);
    }

   
    #iframe-container {
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: #000;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: none;
        z-index: 99999;
    }


    iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

 
    #desktop {
        flex-grow: 1;
        position: relative;
        background-image: url("wallpaper.jpg");
        background-size: cover;
        background-position: center;
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0;
    }
    .terminal {
        font-size: 1em;
        line-height: 1.2em;
        width: 40vw;
        min-height: 300px;
        margin-top: 100px;
        margin-left: 100px;
        background-color: #000;
        color: #b4c4c6;
        padding: 10px;
        border-radius: 0 0 7px 7px;
        position: relative;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 30px 1px rgba(0, 0, 0, 0.2);
    }

    .terminal::before {
        border-radius: 7px 7px 0 0;
        position: absolute;
        content: attr(data-content);
        display: block;
        width: 100%;
        text-overflow: ellipsis;
        padding: 0 80px;
        white-space: nowrap;
        overflow: hidden;
        height: 25px;
        line-height: 25px;
        text-align: center;
        color: #4c3436;
        font-size: 1em;
        background: linear-gradient(0deg, #d8d8d8, #ececec);
        top: -25px;
        left: 0;
        font-family: "PT Sans", sans-serif;
    }

    .terminal p {
        margin: 0;
    }

    .terminal p::before {
        color: #5ed7ff;
        content: "~$ ";
    }
</style>

