/* Brick Breaker Game Styles */
.breakout-container {
    position: relative;
    padding: 1rem;
    max-width: 850px;
    margin: 0 auto;
}

#breakoutCanvas {
    display: block;
    background: #001122;
    border: 2px solid #3498db;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    height: auto;
    touch-action: none;
}

.game-over-breakout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-over-content {
    background: #34495e;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.play-again-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.play-again-btn:hover {
    background: #2980b9;
}

@media (max-width: 900px) {
    #breakoutCanvas {
        max-width: 100%;
    }
}

