.retro-bg {
    background-color: #008080; /* Classic Win95 Teal */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: "MS Sans Serif", Arial, sans-serif;
}

.retro-window {
    width: 350px;
    background-color: #c0c0c0;
    border: 2px outset #ffffff;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.5);
    padding: 2px;
}

/* Title Bar Styling */
.title-bar {
    background: linear-gradient(90deg, #000080, #1084d0);
    padding: 3px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.title-controls { display: flex; gap: 2px; }
.ctrl {
    width: 14px;
    height: 12px;
    background: #c0c0c0;
    border: 1px outset #fff;
    color: black;
    font-size: 9px;
    text-align: center;
    line-height: 10px;
}

.window-body {
    padding: 20px;
    background-color: #c0c0c0;
}

.avatar-pixel-frame {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #000;
    border: 3px inset #808080;
}

.avatar-pixel-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) grayscale(0.5);
}

.profile h1 { font-size: 1.4rem; margin: 0; }
.tagline { color: #800000; font-size: 0.8rem; font-weight: bold; margin: 5px 0; }

.status-box {
    background: #000;
    color: #33ff33;
    font-family: "Courier New", monospace;
    font-size: 11px;
    padding: 4px;
    border: 2px inset #808080;
    margin: 10px 0 20px;
}

.retro-btn {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    background: #c0c0c0;
    border: 2px outset #ffffff;
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
}

.retro-btn:active {
    border: 2px inset #ffffff;
    padding: 11px 9px 9px 11px;
}

.retro-btn:hover {
    background-color: #d0d0d0;
}

.bottom-inset {
    border: 2px inset #ffffff;
    padding: 2px 5px;
    font-size: 10px;
    font-family: "Courier New", monospace;
}

.hidden-text {
    visibility: hidden;
}

.visible-text {
    visibility: visible;
}

.status-box {
    height: 60px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .status-box h1 {
    margin: 0;          
    padding-bottom: 2px;
} */

.status-box p {
    margin: 0;          
    line-height: 1.2;
}