/* yes i do actually hate jews and i hate u for looking in inspect element u dumb faggot */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; 
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('public/images/weilandy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -1;
}

.content-container {
    width: auto;
    padding: 20px; 
    z-index: 1;
    overflow-y: auto;
    height: 100vh;
}

.profile-grid {
    display: flex; 
    justify-content: flex-start;
    padding-top: 20px;
}

.profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar {
    width: 70px; 
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #333;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none; 
    cursor: pointer;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 0.9rem; 
    font-weight: bold;
}


.window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #0a0a0a #0a0a0a #dfdfdf;
    padding: 2px;
    display: none;
    z-index: 30000;
    width: 320px;
    box-shadow: inset 1px 1px #fff, 1px 1px #000;
}

.title-bar {
    background: linear-gradient(90deg, #000080, #1084d0);
    padding: 3px 5px 3px 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move; 
    user-select: none;
}

.title-bar-text {
    color: #fff;
    font-weight: bold;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    font-size: 11px;
}

.title-bar-controls {
    display: flex;
}

.title-bar-controls button {
    width: 16px;
    height: 14px;
    background: #c0c0c0;
    border: 1px solid;
    border-color: #dfdfdf #0a0a0a #0a0a0a #dfdfdf;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-shadow: inset 1px 1px #fff;
}

.title-bar-controls button::after {
    content: "x";
    position: absolute;
    top: -3px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
    color: black;
}

.window-body {
    padding: 10px;
}

.dialog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dialog-avatar {
    width: 100%;
    max-width: 280px;
    height: auto;
    border: 1px solid #808080;
    margin-bottom: 10px;
}

.dialog-bio-text {
    color: #000;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    font-size: 12px;
    margin: 10px 0;
    text-align: left;
    width: 100%;
}

.dialog-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.retro-button {
    min-width: 75px;
    padding: 4px 10px;
    background: #c0c0c0;
    border: 1px solid;
    border-color: #dfdfdf #0a0a0a #0a0a0a #dfdfdf;
    cursor: pointer;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    font-size: 11px;
    box-shadow: inset 1px 1px #fff;
}

.retro-button:active {
    border-color: #0a0a0a #dfdfdf #dfdfdf #0a0a0a;
    box-shadow: inset 1px 1px #808080;
}

.click-to-start {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    letter-spacing: 0.5em;
    cursor: pointer;
    z-index: 20000;
}
