body {
    background-color: #F2F2E6;
    background-image: url('personah.png');
    background-size: cover;
    background-position: center;
    color: #000000;
    font-family: 'Instrument Sans', sans-serif;
    margin: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    box-sizing: border-box;
    background-color: rgba(246, 242, 230, 0.4);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    z-index: 100;
}

.brand-text {
    font-family: 'Instrument Serif', serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.time-text {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    opacity: 0.85;
}

.window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    border: 1px solid #000000;
    border-radius: 16px;
    padding: 28px;
    background-color: #F6F2E6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.windowheader {
    cursor: grab;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -16px -16px 20px -16px;
    padding: 4px 8px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.closebutton {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    background-color: #ff5f56;
    display: inline-block;
    cursor: pointer;
}

.mac-btn-yellow {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    background-color: #ffbd2e;
    display: inline-block;
    opacity: 0.5;
}

.mac-btn-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    background-color: #27c93f;
    display: inline-block;
    opacity: 0.5;
}

.hidden {
    display: none !important;
}

.dock {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px; 
    padding: 10px 18px; 
    background: rgba(246, 242, 230, 0.4); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 24px; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.dock-item {
    width: 56px;  
    height: 56px; 
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px; 
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s;
}

.dock-item:hover {
    transform: translateY(-10px) scale(1.15); 
    background: rgba(255, 255, 255, 0.95);
}

.hidden {
    display: none !important;
}