#window-dosgames {
    width: 800px !important;
    height: 600px !important;
    min-width: 800px !important;
    min-height: 600px !important;
    background-color: var(--win-gray) !important;
}

#window-dosgames .window-body {
    background-color: var(--win-gray) !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    border: 0px;
}

#window-dosgames .menu-bar {
    background-color: var(--win-gray);
    border-bottom: 1px solid var(--border-light);
    padding: 2px 4px;
    flex-shrink: 0 !important;
    height: 20px !important;
}

.dosgames-container {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    width: 100% !important;
    height: calc(100% - 20px) !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 2px;
    box-sizing: border-box;
}

.dosgames-viewport {
    flex: 1 !important;
    background-color: #000;
    
    border-top: 2px solid var(--border-dark);
    border-left: 2px solid var(--border-dark);
    border-right: 2px solid var(--win-white);
    border-bottom: 2px solid var(--win-white);
    
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.dosgames-iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    
    aspect-ratio: 16/9 !important; 
    
    height: 100% !important;
    width: auto !important;
    max-width: 100% !important;
    
    border: none !important;
    display: none;
    background-color: #000;
    z-index: 5;
}

.dosgames-cover {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background-color: #000; 
    
    box-shadow: inset 0 0 0 2px #008000; 
    z-index: 10;
    
    font-family: 'Courier New', monospace;
    color: #0f0;
}

.dosgames-logo {
    font-family: 'Courier New', monospace; 
    font-weight: bold;
    font-size: 48px;
    color: #0f0;
    
    text-shadow: 0 0 5px #0f0, 0 0 10px #008000; 
    
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid #0f0;
    padding-bottom: 5px;
}

.dosgames-subtitle {
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.dosgames-loading-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dosgames-btn-start {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 14px;
    height: 30px;
    padding: 0 20px;
    
    background-color: #000;
    color: #0f0;
    border: 1px solid #0f0;
    cursor: pointer;
    text-transform: uppercase;
    
    transition: all 0.2s;
}

.dosgames-btn-start:hover {
    background-color: #0f0;
    color: #000;
    box-shadow: 0 0 10px #0f0;
}

.dosgames-btn-start:active {
    border: 1px inset #0f0;
}

.dosgames-credits {
    position: absolute;
    bottom: 20px;
    color: #006400;
    font-size: 12px;
    font-family: 'Courier New', monospace;
}