/* games/벽돌깨기/game.css */
#gameContainer {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

#breakoutCanvas {
    background: #000;
    touch-action: none;
    max-width: 100%;
    max-height: 100vh;
}

#debugPanel {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #0f0;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 12px;
    z-index: 1000;
    max-width: 300px;
    max-height: 200px;
    overflow-y: auto;
    pointer-events: none;
}

.debug-entry {
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    padding: 2px 0;
    margin: 2px 0;
}