/* ATSA Games Shared Structural CSS */

/* Fullscreen wrapper base */
.fullscreen-wrapper {
    width: 100%;
}

.fullscreen-wrapper:fullscreen {
    background-color: #000 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.fullscreen-wrapper:fullscreen #game-container {
    margin-bottom: 0 !important;
}

/* Base Game Container */
#game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #e0e0e0;
    color: #000;
    border: 2px solid #555;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: 'Courier New', Courier, monospace;
}

/* Base Game Screen */
.game-screen {
    display: none;
    flex: 1 1 auto;
    width: 100%;
    flex-direction: column;
    padding: 2rem;
}

.game-screen.active {
    display: flex;
}

/* Shareable Results Card */
#shareable-results-card {
    max-width: 600px;
    background: #e0e0e0;
    color: #000;
    border: 2px solid #555;
    margin: 0 auto;
}

/* Global Mobile Responsiveness for Game Container */
@media (max-width: 768px) {
    #game-container { 
        min-height: auto !important; 
        border-width: 1px; 
    }
    .game-screen { 
        padding: 1rem; 
    }
}
