body {
    margin: 0;
    background: url('Wall.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ff6600;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
}

#boot {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    text-align: center;
    padding-top: 200px;
}

#boot h1 {
    font-size: 70px;
    letter-spacing: 15px;
    color: #ff6600;
}

#boot p {
    color: #ff6600;
}

.small {
    font-size: 12px;
}

#topbar {
    background: black;
    border-bottom: 1px solid #ff6600;
    padding: 8px 20px;
    font-size: 12px;
}

#topbar > span {
    margin-right: 30px;
}

.icon {
    position: absolute;
    left: 20px;
    width: 80px;
    text-align: center;
    cursor: pointer;
    color: #ff6600;
    padding: 5px;
}

.icon:hover {
    background: rgba(255,120,0,0.2);
}

.ico {
    font-size: 35px;
}

.icon p {
    font-size: 11px;
    margin: 5px 0 0 0;
    text-shadow: 1px 1px 3px black, 0 0 5px black;
    font-weight: bold;
}

.window {
    display: none;
    position: absolute;
    top: 80px;
    left: 200px;
    width: 400px;
    background: rgba(15, 15, 15, 0.95);
    border: 2px solid #ff6600;
    color: #ff9944;
}

.bar {
    background: #ff6600;
    color: black;
    padding: 5px 10px;
    cursor: move;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.x {
   cursor: pointer;
   padding: 0 8px;
   background: black;
   color: #ff6600;
   display: inline-block;
   font-weight: bold;
   user-select: none;
}

.x:hover {
    background: red;
    color: white;
}

.body {
    padding: 15px;
    font-size: 13px;
    max-height: 400px;
    overflow-y: auto;
}

.body h2 {
    color: #ff6600;
}

textarea {
    width: 100%;
    height: 180px;
    background: black;
    color: #ff6600;
    border: 1px solid #ff6600;
    font-family: 'Courier New', monospace;
    padding: 5px;
}

#out {
    color: #ff6600;
    font-size: 13px;
}

#cmd {
    background: black;
    color: #ff6600;
    border: none;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    outline: none;
    width: 90%;

}

#alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,0,0,0.3);
    z-index: 500;
}

#alertbox {
    background: black;
    border: 3px solid red;
    color: red;
    text-align: center;
    padding: 30px;
    margin: 150px auto;
    width: 300px;
}

#alertbox h1 {
    font-size: 50px;
    letter-spacing: 15px;
}

#alertbox button {
    background: red;
    border: none;
    color: black;
    padding: 8px 20px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    margin-top: 10px;
}

#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: black;
    border-top: 1px solid #ff6600;
    display: flex;
    padding: 5px 20px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

#taskbar button {
    background: #ff6600;
    color:black;
    border:none;
    padding:5px 15px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

#clock {
    color: #ff6600;
    padding: 5px 15px 5px 5px;
}

#menu {
    display: none;
    position: fixed;
    bottom: 35px;
    left: 10px;
    background: black;
    border: 1px solid #ff6600;
    padding: 10px;
    width: 150px;
}

#menu p {
    margin: 5px 0;
    color: #ff9944;
    cursor: pointer;
    padding: 3px;
    font-size: 13px;
}

#menu p:hover {
    background: #ff6600;
    color:black;
}

#start-overlay {
    position: fixed;
    inset: 0;
    background: black;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6600;
    font-size: 20px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
}

#right-menu {
    display: none;
    position: fixed;
    background: black;
    border: 1px solid #ff6600;
    padding: 5px;
    width: 180px;
    z-index: 9999;
}

#right-menu p {
    margin: 0;
    padding: 8px 12px;
    color: #ff9944;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

#right-menu p:hover {
    background: #ff6600;
    color: black;
}

input, textarea {
    user-select: text;
    -webkit-user-select: text;
}

#note-input {
    width: 100%;
    height: 100px;
    background: black;
    color: #ff6600;
    border: 1px solid #ff6600;
    font-family: 'Courier New', monospace;
    padding: 5px;
    box-sizing: border-box;
    resize: none;
}

#save-note-btn {
    background: #ff6600;
    color: black;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    margin-top: 5px;
}

#save-note-btn:hover {
    background: #ff9944;
}

.note-entry {
    background: rgba(255, 102, 0, 0.1);
    border-left: 3px solid #ff6600;
    padding: 8px;
    margin: 5px 0;
    font-size: 12px;
    color: #ff9944;
    position: relative;
}

.note-time {
    font-size: 10px;
    color: #ff6600;
    display: block;
    margin-bottom: 4px;
}

.note-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #ff6600;
    cursor: pointer;
    font-size: 14px;
    padding: 0 5px;
}

.note-delete:hover {
    color: red;
}

#file-viewer {
    width: 500px;
}

#file-content {
    color: #ff9944;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    white-space: pre-wrap;
    margin: 0;
    line-height: 1.6;
}

.btns {
    display: flex;
    gap: 3px;
}

.min, .max {
    cursor: pointer;
    padding: 0 8px;
    background: black;
    color: #ff6600;
    display: inline-block;
    font-weight: bold;
    user-select: none;
}

.min:hover, .max:hover {
    background: #ff6600;
    color: black;
}

#taskbar-apps {
    display: flex;
    gap: 5px;
    flex: 1;
    margin-left: 15px;
}

.taskbar-item {
    background: #1a1a1a;
    color: #ff6600;
    padding: 3px 10px;
    cursor: pointer;
    border: 1px solid #ff6600;
    font-size: 11px;
    font-family: 'Courier New', monospace;
}

.taskbar-item:hover {
    background: #ff6600;
    color: black;
}

#launch-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    border: 4px solid #ff3300;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3300;
    font-family: 'Courier New', monospace;
    padding: 30px;
    box-sizing: border-box;
}

.launch-box {
    text-align: center;
    width: 600px;
}

#launch-progress {
    font-size: 80px;
    font-weight: bold;
    margin: 20px 0;
    letter-spacing: 5px;
    text-shadow: 0 0 15px #ff3300;
}

#launch-log {
    border-top: 1px dashed #ff3300;
    padding-top: 15px;
    height: 150px;
    text-align: left;
    font-size: 13px;
    overflow: hidden;
}

#launch-log p {
    margin: 5px 0;
}