        /* 게임 전체 컨테이너 스타일 */
        #ladder-game-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            font-family: Arial, sans-serif;
            border: 1px solid #ddd;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #C4C4C4;
        }

        h2 {
            text-align: center;
            color: #333;
        }

        /* 입력 섹션 스타일 */
        .input-section {
            margin-bottom: 15px;
        }

        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #555;
        }

        input[type="text"] {
            width: calc(100% - 20px);
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        /* 버튼 섹션 스타일 */
        .button-section {
            text-align: center;
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .button-section button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.2s;
            min-width: 120px;
        }

        .button-section button:hover {
            transform: translateY(-2px);
        }

        /* 사다리 생성 버튼 */
        #generate-ladder-btn {
            background-color: #2ecc71;
            color: white;
        }
        #generate-ladder-btn:hover {
            background-color: #27ae60;
        }
        
        /* 사다리 영역 (캔버스 포함) */
        #ladder-area {
            padding: 20px 0;
            position: relative; 
            width: 100%; 
            box-sizing: border-box; 
        }

        canvas {
            border: 1px solid #aaa;
            display: block;
            margin: 0 auto;
            background-color: white;
            position: relative; 
            cursor: default;
        }

        /* 참여자 및 결과 표시 영역 */
        .ladder-label {
            position: absolute;
            width: 100px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: bold;
            color: #333;
            z-index: 10;
            transform: translateX(-50%); 
        }

        /* 결과 표시 영역 */
        #result-area {
            margin-top: 30px;
            padding: 15px;
            border-top: 2px solid #333;
            font-size: 1.1em;
        }

        .result-item {
            padding: 5px 0;
            border-bottom: 1px dotted #ccc;
        }
        .result-item:last-child {
            border-bottom: none;
        }