@charset "UTF-8";

body {
    font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    word-break: keep-all;
}

#header-placeholder header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

#footer-placeholder footer {
    background: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #eee;
    color: #666;
    margin-top: 3rem;
}

/* --- Brick Breaker Game --- */
.game-container {
    background: #000;
    width: 480px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    border: 4px solid #333;
}

#gameCanvas {
    background: #111;
    width: 100%;
    height: 100%;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10;
}