* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #462ec9;
    /* Standard OS Blue */
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Desktop */
.desktop {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.icon {
    width: 80px;
    text-align: center;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.icon-graphic {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    margin: 0 auto 5px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    object-fit: contain;
}

/* Taskbar */
.taskbar {
    height: 48px;
    background-color: #1a1b1c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 100;
}

.start-btn {
    background: transparent;
    border: none;
    height: 100%;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.start-btn:hover {
    background-color: #333;
}

/* The CSS Logo */
.css-logo {
    display: grid;
    grid-template-columns: 10px 10px;
    grid-template-rows: 10px 10px;
    gap: 2px;
}

.css-logo div {
    background-color: white;
}

#clock {
    color: white;
    font-size: 14px;
    padding: 0 15px;
}

/* Start Menu */
.start-menu {
    position: absolute;
    bottom: 48px;
    left: 0;
    width: 250px;
    background-color: #1a1b1c;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    color: white;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.menu-item {
    padding: 15px;
    cursor: pointer;
}

.menu-item:hover {
    background-color: #333;
}

/* Window */
.window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 50;
    display: flex;
    flex-direction: column;
}

.window-header {
    background-color: #eee;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}

.close-btn {
    background-color: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 0 5px;
}

.close-btn:hover {
    color: red;
}

.window-content {
    padding: 40px 20px;
    text-align: center;
}

.launch-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0078D7;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.hidden {
    display: none !important;
}