body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #333;
}

.window {
    background: white;
    border: 2px solid #000;
    max-width: 1100px;
    margin: 20px auto;
}

.titlebar {
    background: linear-gradient(to right, #000080, #1084d0);
    color: white;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.close-btn {
    background: #ddd;
    color: black;
    padding: 0 6px;
    border: 1px solid #000;
}

.menubar {
    background: #d4d0c8;
    padding: 4px 10px;
    border-bottom: 1px solid #999;
}

.menubar span {
    margin-right: 15px;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: #e8f0fb;
}

.navbar a {
    background: #d4d0c8;
    border: 1px solid #888;
    padding: 8px 16px;
    text-decoration: none;
    color: black;
    border-radius: 4px;
}

.banner {
    background: linear-gradient(to bottom, #f5c56b, #d97a5f);
    text-align: center;
    padding: 40px 30px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.profile-section {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #cfe4f7;
}

.profile-left {
    width: 250px;
    text-align: center;
}

.profile-pic {
    width: 100%;
    border-radius: 6px;
    border: 2px solid #000;
}

.role {
    color: #444;
    margin-bottom: 0;
}

.bio {
    max-width: 500px;
    line-height: 1.5;
}

.work-section, .skills-section {
    padding: 30px;
    background: #f0f0f0;
}

.work-box {
    background: #f5d76e;
    padding: 20px;
    border-radius: 8px;
}

.skills-section ul {
    line-height: 1.8;
}

.taskbar {
    background: #d4d0c8;
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    border-top: 2px solid #888;
}
