* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: #000;
    font-family: 'Arial', sans-serif;
    touch-action: none;  /* 터치 스크롤 방지 */
    -webkit-touch-callout: none;  /* iOS 길게 누르기 메뉴 방지 */
    -webkit-user-select: none;  /* 텍스트 선택 방지 */
    user-select: none;
}

#game-container {
    width: 100%;
    height: 100%;
}