body{
    user-select:none;
}

#desktop{

    display:none;
    opacity:0;
    transition:opacity 1.8s;

}

#bootScreen{

    position:fixed;
    inset:0;
    background:#06152b;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

#bootContainer{

    width: 700px;
    color: #74ff7d;
    font-family:Consolas,monospace;
}

#bootContainer h1{

    margin-bottom: 8px;

}

.bootLine{

    margin:12px 0;
}

#status{

    margin-top: 20px;
    font-weight:bold;

}

#bootButton{

    margin-top: 25px;
    padding:12px 26px;
    background: #74ff7d;
    color:black;
    border:none;
    cursor:pointer;
    font-family: inherit;
    font-size: 17px;
    opacity: 0;
    transition:opacity .4s;
}

.topBar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    gap:10px;
    height:58px;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    padding:0 20px;
    box-sizing:border-box;
    background:rgba(10,12,20,.70);body{
    user-select:none;
}

#desktop{

    display:none;
    opacity:0;
    transition:opacity 1.8s;

}

#bootScreen{

    position:fixed;
    inset:0;
    background:#06152b;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

#bootContainer{

    width: 700px;
    color: #74ff7d;
    font-family:Consolas,monospace;
}

#bootContainer h1{

    margin-bottom: 8px;

}

.bootLine{

    margin:12px 0;
}

#status{

    margin-top: 20px;
    font-weight:bold;

}

#bootButton{

    margin-top: 25px;
    padding:12px 26px;
    background: #74ff7d;
    color:black;
    border:none;
    cursor:pointer;
    font-family: inherit;
    font-size: 17px;
    opacity: 0;
    transition:opacity .4s;
}

.topBar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    gap:10px;
    height:58px;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    padding:0 20px;
    box-sizing:border-box;
    background:rgba(10,12,20,.70);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 2px 20px rgba(0,0,0,.35);
    z-index:1000;
}

.time{
    margin:0;
    margin-left: auto;
    padding:11px 18px;
    font-size:1rem;
    font-weight:600;
    color:white;
    background:rgba(57,174,241,.18);
    backdrop-filter:blur(12px);
    border-radius:12px;
    border:1px solid rgba(255,255,255,.08);
}

.welcomeopen{
    height:38px;
    padding:0 18px;
    border:none;
    border-radius:10px;
    background:rgba(57,174,241,.18);
    color:white;
    font-size:15px;
    font-family:"Segoe UI",sans-serif;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.desktop{
    position:absolute;
    top:85px;
    left:20px;
    width:100%;
    height: calc(100vh - 85px);
    box-sizing: border-box;
}

.appsIcon{
    width:88px;
    padding:10px;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    cursor:pointer;
    transition:.15s;
    position:absolute;  
}

.appsIcon:hover{
    background:rgba(255,255,255,.06);
}

.iconText{
    margin-top:8px;
    margin-bottom:0;
    color:white;
    font-size:14px;
    text-align:center;
}

.window{
    position:absolute;
    top:52%;
    left:50%;
    transform:translate(-50%,-50%);
    width:780px;
    min-height:430px;
    background:rgba(8,18,30,.42);
    backdrop-filter:blur(18px);
    border:2px solid rgba(134,193,228,.18);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
    color:white;
}

.titleBar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    cursor:move;
    background:rgba(255,255,255,.04);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.windowTitle{
    font-size:25px;
    font-weight:700;
}

.windowContent{
    padding:24px;
}

.windowContent h2{
    margin-top:0;
    font-size:31px;
}

.windowContent p{
    font-size:18px;
    line-height:1.65;
    color:rgb(225,225,225);
}

.closeButton{
    width:34px;
    height:34px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    border-radius:8px;
    cursor:pointer;
    transition:.2s;
    
}

.notesArea{
    width:100%;
    height:320px;
    resize:none;
    box-sizing:border-box;
    padding:16px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(8px);
    color:white;
    outline:none;
    font-size:17px;
    font-family:"Segoe UI",sans-serif;
}

.notesArea::placeholder{
    color:rgba(255,255,255,.45);
}

.notesArea:focus{
    border-color:rgba(134,193,228,.35);
}

#terminalInputLine{
    display:flex;
    align-items: center;
    gap:8px;
    background:#050505;
    color:#00ff66;
    padding: 10px 15px;
    font-family: monospace;
    font-size: 16px;
    box-sizing: border-box;
}

.terminalContent{
    background:#050505;
    min-height: 350px;
    color:#00ff66;
    font-family: monospace;

}

#terminalTitle{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding:15px;
    border-bottom: 1px solid #00ff66;
    box-sizing: border-box;
}

#terminalInputLine{
    display:flex;
    align-items: center;
    gap:8px;
    padding: 10px 15px 12px 20px;
    color:#00ff66;  
    font-family: monospace;
    font-size: 16px;
    box-sizing: border-box;

}

#terminalInput{
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: monospace;
    font-size: 16px;

}

.terminalWindowContent{
    padding:18px;
    background:transparent;
    padding-bottom: 30px;

}

#terminalBox{
    background: #050505;
    border:1px solid rgba(0,255,102,.35);
    border-radius: 8px;
    min-height: 350px;
    box-sizing: border-box;

}

#terminalOutput{
    padding: 10px 15px;
    color:white;
    font-family: monospace;
    font-size: 16px;
    box-sizing: border-box;
}

    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 2px 20px rgba(0,0,0,.35);
    z-index:1000;
}

.time{
    margin:0;
    margin-left: auto;
    padding:11px 18px;
    font-size:1rem;
    font-weight:600;
    color:white;
    background:rgba(57,174,241,.18);
    backdrop-filter:blur(12px);
    border-radius:12px;
    border:1px solid rgba(255,255,255,.08);
}

.welcomeopen{
    height:38px;
    padding:0 18px;
    border:none;
    border-radius:10px;
    background:rgba(57,174,241,.18);
    color:white;
    font-size:15px;
    font-family:"Segoe UI",sans-serif;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.desktop{
    position:absolute;
    top:85px;
    left:20px;
    width:100%;
    height: calc(100vh - 85px);
    box-sizing: border-box;
}

.appsIcon{
    width:88px;
    padding:10px;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    cursor:pointer;
    transition:.15s;
    position:absolute;  
}

.appsIcon:hover{
    background:rgba(255,255,255,.06);
}

.iconText{
    margin-top:8px;
    margin-bottom:0;
    color:white;
    font-size:14px;
    text-align:center;
}

.window{
    position:absolute;
    top:52%;
    left:50%;
    transform:translate(-50%,-50%);
    width:780px;
    min-height:430px;
    background:rgba(8,18,30,.42);
    backdrop-filter:blur(18px);
    border:2px solid rgba(134,193,228,.18);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
    color:white;
}

.titleBar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    cursor:move;
    background:rgba(255,255,255,.04);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.windowTitle{
    font-size:25px;
    font-weight:700;
}

.windowContent{
    padding:24px;
}

.windowContent h2{
    margin-top:0;
    font-size:31px;
}

.windowContent p{
    font-size:18px;
    line-height:1.65;
    color:rgb(225,225,225);
}

.closeButton{
    width:34px;
    height:34px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    border-radius:8px;
    cursor:pointer;
    transition:.2s;
    
}

.notesArea{
    width:100%;
    height:320px;
    resize:none;
    box-sizing:border-box;
    padding:16px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(8px);
    color:white;
    outline:none;
    font-size:17px;
    font-family:"Segoe UI",sans-serif;
}

.notesArea::placeholder{
    color:rgba(255,255,255,.45);
}

.notesArea:focus{
    border-color:rgba(134,193,228,.35);
}

#terminalInputLine{
    display:flex;
    align-items: center;
    gap:8px;
    background:#050505;
    color:#00ff66;
    padding: 10px 15px;
    font-family: monospace;
    font-size: 16px;
    box-sizing: border-box;
}

.terminalContent{
    background:#050505;
    min-height: 350px;
    color:#00ff66;
    font-family: monospace;

}

#terminalTitle{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding:15px;
    border-bottom: 1px solid #00ff66;
    box-sizing: border-box;
}

#terminalInputLine{
    display:flex;
    align-items: center;
    gap:8px;
    padding: 10px 15px 0px 15px;
    color:#00ff66;  
    font-family: monospace;
    font-size: 16px;
    box-sizing: border-box;

}

#terminalInput{
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: monospace;
    font-size: 16px;
    caret-color: transparent;

}

#terminalInputLine{
    position:relative;
}

#terminalCursor{
    position:absolute;
    width:10px;
    height:20px;
    background:white;
    pointer-events:none;
    animation:terminalBlink .8s steps(1) infinite;
}

@keyframes terminalBlink{

    0%, 50%{
        opacity:1;
    }

    51%, 100%{
        opacity:0;
    }

}

.terminalWindowContent{
    padding:18px;
    background:transparent;
    padding-bottom: 30px;

}

#terminalBox{
    background: #050505;
    border:1px solid rgba(0,255,102,.35);
    border-radius: 8px;
    min-height: 350px;
    box-sizing: border-box;
   

}

#terminalOutput{
    padding: 0px 15px 10px 15px;
    color:white;
    font-family: monospace;
    font-size: 16px;
    box-sizing: border-box;
}
