        body {
            background-color: #1e1e1e;
            /* 짙은 회색 배경 */
            color: #00ff00;
            /* 터미널 특유의 형광 초록 */
            font-family: 'Courier New', Courier, monospace;
            /* 코딩 폰트 */
            padding: 40px;
            line-height: 1.6;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            border: 2px solid #555;
            padding: 20px;
            background-color: #000;
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
        }

        .top-bar {
            border-bottom: 1px solid #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            color: #ddd;
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
        }

        .red {
            background-color: #ff5f56;
        }

        .yellow {
            background-color: #ffbd2e;
        }

        .green {
            background-color: #27c93f;
        }

        .command-line {
            margin-bottom: 15px;
        }

        .prompt {
            color: #f0f;
            font-weight: bold;
        }

        /* 분홍색 프롬프트 */
        .command {
            color: #fff;
        }

        .output {
            color: #00ff00;
            margin-left: 20px;
            white-space: pre-wrap;
        }

        .error {
            color: #ff3333;
        }

        /* 에러 메시지는 빨간색 */

        /* 사진 스타일 */
        .meme-img {
            margin-top: 10px;
            width: 300px;
            border: 3px solid #fff;
            display: block;
        }

        /* 커서 깜빡임 효과 */
        .cursor {
            display: inline-block;
            width: 10px;
            height: 18px;
            background-color: #00ff00;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        /* 언어 토글 버튼 - 터미널 스타일 */
        .lang-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            padding: 10px 20px;
            background: rgba(0, 0, 0, 0.9);
            color: #00ff00;
            border: 2px solid #555;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
            font-family: 'Courier New', Courier, monospace;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
            transition: all 0.3s ease;
        }

        .lang-toggle:hover {
            background: rgba(0, 255, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
            transform: translateY(-2px);
        }

        /* 페이지 진행 인디케이터 - 터미널 스타일 */
        .page-indicator {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 9998;
            padding: 10px 20px;
            background: rgba(0, 0, 0, 0.9);
            color: #00ff00;
            border: 2px solid #555;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
            font-family: 'Courier New', Courier, monospace;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
            transition: all 0.3s ease;
        }

        .page-indicator:hover {
            background: rgba(0, 255, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
            transform: translateY(-1px);
        }

        /* 네비게이션 버튼 - 터미널 스타일 */
        .page-nav {
            text-align: center;
            margin-top: 40px;
            padding-bottom: 20px;
        }

        .nav-btn {
            display: inline-block;
            padding: 12px 24px;
            margin: 0 10px;
            background: rgba(0, 0, 0, 0.9);
            color: #00ff00;
            border: 2px solid #555;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-family: 'Courier New', Courier, monospace;
            font-size: 14px;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: rgba(0, 255, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
            transform: translateY(-2px);
        }

        .nav-btn:active {
            transform: translateY(0);
        }

        /* 모바일 반응형 */
        @media (max-width: 768px) {
            .lang-toggle {
                top: 10px;
                right: 10px;
                padding: 8px 16px;
                font-size: 12px;
            }

            .page-indicator {
                top: 10px;
                left: 10px;
                padding: 8px 16px;
                font-size: 12px;
            }

            .container {
                padding: 15px;
            }

            .nav-btn {
                display: block;
                margin: 10px auto;
                max-width: 200px;
            }
        }

        /* ============================================
           Print CSS - 인쇄 최적화
           ========================================= */

        @media print {

            /* 페이지 설정 */
            @page {
                margin: 1.5cm;
                size: A4;
            }

            /* 인쇄 시 숨길 요소들 */
            .lang-toggle,
            .page-indicator,
            .page-nav,
            .nav-btn {
                display: none !important;
            }

            /* 기본 배경을 흰색으로 */
            body {
                background-color: white;
                color: black;
                padding: 0;
            }

            .container {
                max-width: 100%;
                margin: 0;
                padding: 15pt;
                background-color: white;
                border: 1px solid black;
                box-shadow: none;
                page-break-inside: avoid;
            }

            .top-bar {
                border-bottom: 1px solid black;
                color: black;
            }

            .dot {
                border: 1px solid black;
            }

            .command-line {
                page-break-inside: avoid;
            }

            .prompt {
                color: black;
            }

            .command {
                color: black;
            }

            .output {
                color: black;
            }

            .error {
                color: #666;
            }

            .meme-img {
                max-width: 100%;
                height: auto;
                page-break-inside: avoid;
                border: 1px solid black;
            }

            .cursor {
                display: none;
            }

            /* 색상 보존 */
            * {
                print-color-adjust: exact;
                -webkit-print-color-adjust: exact;
            }
        }