/* ========================================
   TANKS 8-BIT GAME STYLES
   ======================================== */

#tanks-game-container {
    display: none;
    /* Changed via JS */
    width: 100%;
}

#tanksGameSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    width: 100%;
}

#tanksCanvas {
    border: 4px solid #444;
    background-color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    image-rendering: pixelated;
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 1 / 1;
}

#tanks-ui {
    width: 600px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 0 0 5px #000;
}

#tanks-game-container .controls-hint {
    margin-top: 10px;
    font-size: 0.8em;
    color: #666;
    text-align: center;
}

/* Retro Configuration Styles for Start Screen */
.retro-config-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
    /* Increased spacing */
    flex-wrap: wrap;
    /* Ensure responsiveness */
}

.retro-config-group {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.retro-label {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    /* Reduced from 2.5rem */
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: none;
    /* Removed neon glow */
}

.retro-select {
    background: rgba(255, 255, 255, 0.1);
    /* Standard dark transparent */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border */
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    /* Reduced size */
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
    min-width: 150px;
}

.retro-select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.retro-select:focus {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    /* White glow */
    border-color: #fff;
    /* White border */
    background: rgba(0, 0, 0, 0.5);
}

.retro-select option {
    background: #000;
    color: #fff;
}