* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #008080; /* Teal Klasik Windows 95 */
    font-family: 'VT323', monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.retro-screen {
    width: 100%;
    max-width: 450px;
    height: 100vh;
    position: relative;
    padding: 20px;
}

/* Desktop Icons */
.desktop-icons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.d-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
}

.d-icon i {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* Window Style */
.window {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #0a0a0a #0a0a0a #dfdfdf;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-top: 100px;
}

.title-bar {
    background: linear-gradient(90deg, #000080, #1084d0);
    padding: 3px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.window-controls button {
    background: #c0c0c0;
    border: 1px solid;
    border-color: #dfdfdf #0a0a0a #0a0a0a #dfdfdf;
    font-family: Arial, sans-serif;
    font-weight: bold;
    padding: 0 4px;
    cursor: pointer;
}

.window-content {
    padding: 20px;
}

.profile-header img {
    width: 80px;
    height: 80px;
    border: 2px solid #0a0a0a;
    background: white;
    padding: 2px;
}

.profile-header h2 { margin: 10px 0 0; font-size: 2rem; }
.status-online { color: #008000; font-weight: bold; }

/* Tombol Ala Win95 */
.program-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.win95-btn {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #0a0a0a #0a0a0a #dfdfdf;
    padding: 10px;
    text-decoration: none;
    color: black;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.win95-btn:active {
    border-color: #0a0a0a #dfdfdf #dfdfdf #0a0a0a;
    padding: 11px 9px 9px 11px;
}

.status-bar {
    border-top: 1px solid #808080;
    padding: 2px 5px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    background: #c0c0c0;
}

/* Taskbar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: #c0c0c0;
    border-top: 2px solid #dfdfdf;
    display: flex;
    align-items: center;
    padding: 2px 5px;
    gap: 5px;
}

.start-button {
    font-family: 'VT323', monospace;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px;
    border: 2px solid;
    border-color: #dfdfdf #0a0a0a #0a0a0a #dfdfdf;
    background: #c0c0c0;
}

.task-active {
    flex-grow: 1;
    border: 2px solid;
    border-color: #0a0a0a #dfdfdf #dfdfdf #0a0a0a;
    padding: 2px 10px;
    font-size: 0.9rem;
    background: #e0e0e0;
}

.clock {
    border: 2px solid;
    border-color: #808080 #dfdfdf #dfdfdf #808080;
    padding: 2px 10px;
    font-size: 0.9rem;
}
