/* 기본 스타일 초기화 */
body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

/* 게임을 감싸는 부모 박스 - 버튼 정렬의 기준점이 됨 */
.game-container {
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* 게임 보드 캔버스 */
#game-board {
    background-color: #111;
    border: 4px solid #333;
    display: block;
}

/* 정중앙에 배치되는 시작 버튼 */
#start-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff007f, #7f00ff);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

#start-btn:hover {
    transform: translate(-50%, -54%);
    box-shadow: 0 8px 20px rgba(255, 0, 127, 0.4);
}

/* 버튼을 숨기기 위한 클래스 */
.hidden {
    display: none !important;
}