.container-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#container {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    width: 450px;
    padding: 10px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.pfp {
    margin-top: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: solid;
}

.h1-1 {
    font-weight: 100;
    margin-bottom: 0;
}

.intro {
    margin-top: 0;
}

.topbar {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 98%;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: 5px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    padding: 0 4px;
}

.left-top {
    margin-left: 16px;
    font-weight: 700;
    background-color: #FFB399;
    padding: 4px 12px;
    border-radius: 7px;
}

.right-top {
    margin-right: 16px;
    background-color: #FFD6A6;
    padding: 4px 12px;
    border-radius: 7px;
}

.middle-top {
    margin-left: 16px;
    background-color: #FFF0BE;
    padding: 4px 12px;
    border-radius: 7px;
}

body {
    background-image: url('pop.avif');
    background-size: cover;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.copyright {
    position: absolute;
    bottom: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    background-color: #FF5F57;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 8px;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.1s;
}

.close-btn:hover {
    color: rgba(0, 0, 0, 0.5);
}


/* Weather App Window */
#weather-container {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    width: 280px;
    padding: 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(100, 160, 255, 0.25), rgba(50, 100, 200, 0.15));
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 8px 32px rgba(0,0,0,0.3);
    color: white;
}

.weather-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.weather-city {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.weather-time {
    font-size: 12px;
    opacity: 0.6;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

.weather-emoji {
    font-size: 52px;
    line-height: 1;
}

.weather-temp {
    font-size: 52px;
    font-weight: 200;
    line-height: 1;
}

.weather-desc {
    font-size: 14px;
    opacity: 0.75;
    text-transform: capitalize;
}

/* About Me Window */
#aboutme-container {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    width: 260px;
    padding: 24px 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 180, 150, 0.2), rgba(200, 100, 200, 0.15));
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 8px 32px rgba(0,0,0,0.3);
    color: white;
    text-align: center;
}

.aboutme-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.aboutme-pfp {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.aboutme-name {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.aboutme-sub {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

.aboutme-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    width: 100%;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 14px;
    transition: background 0.2s;
}

.social-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* macOS Dock */
.dock {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}

.dock-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dock-item:hover {
    transform: translateY(-14px) scale(1.3);
}

.dock-item:hover .dock-label {
    opacity: 1;
    transform: translateY(0px);
}

.dock-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.dock-label {
    position: absolute;
    bottom: 72px;
    background: rgba(30,30,30,0.85);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
}

.dock-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(30,30,30,0.85);
}

.dock-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    margin-top: 4px;
}
/* Notes Window */
#notes-container {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    width: 300px;
    padding: 16px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 240, 180, 0.2), rgba(255, 200, 100, 0.12));
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 8px 32px rgba(0,0,0,0.3);
    color: white;
}

.notes-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notes-title {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.notes-clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.6;
    transition: opacity 0.15s;
    padding: 0;
}

.notes-clear-btn:hover {
    opacity: 1;
}

#notes-textarea {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 10px;
    resize: none;
    outline: none;
    box-sizing: border-box;
    line-height: 1.6;
}

#notes-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#notes-textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}