.window {
    position: absolute;
    background-color: var(--bg);
    border-radius: 4px;
    outline: 2px solid black;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px black;
    overflow: hidden;
}

.window-header {
    height: 26px;
    background: var(--white); 
    line-height: 30px;
    padding-left: 10px;
}

.window-close {
    position: absolute;
    top: 0px;
    right: 4px;
    width: 23px;
    height: 24px;
    line-height: 26px;
    padding-left: 2px;
    color: var(--white);
    background-color: var(--red);
    text-align: center;
    border-radius: 4px;
    cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
}

.window-close:hover {
   filter: brightness(1.2);
}

.window-scene {
    position: absolute;
    height: calc(100% - 27px);
    width: 100%;
    box-shadow: inset -2px -2px 1px black, inset 2px 2px 1px black;
}

.window-container {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    
    display: flex;
    flex-direction: column; 

    gap: 25px;
    overflow-y: auto;
}

/* SECTIONS */

.window-section {
    position: relative;
    width: 96%;
}

.window-section-header {
    position: relative;
    width: 100%;
    height: 24px;
    border-bottom: 2px dashed var(--white);
    color: var(--white);
    margin-bottom: 15px;
}

.window-section-paragraph {
    width: 95%;
    color: var(--white);
    line-height: 26px;
    padding-left: 20px;
}

.window-section-selector {
    width: 95%;
    color: var(--white);
    line-height: 26px;
    padding-left: 20px;
}

.window-section-button {
    width: 100%;
    color: var(--white);
    height: 30px;
    line-height: 32px;
    text-align: center;
    background-color: var(--red);
    border-radius: 4px;
    box-shadow: inset 1px 1px 1px black, inset -1px -1px 1px black, inset -1px 1px 1px black, inset 1px -1px 1px black;
    
    cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
    transition: .1s;
}

.window-section-button:hover {
    filter: brightness(1.2);
}

.window-credits-disclaimer {
    padding-right: 20px;
    color: var(--red);
    font-size: 10px;
    line-height: 12px;
    text-align: justify;
}

/* POPUP */
.popup {
    position: absolute;
    background-color: var(--bg);
    border: 2px solid black;
    outline: 3px solid var(--white);
    border-radius: 4px;
    box-shadow: 0 0 20px black;
    overflow: hidden;
}
