
        .container {
            max-width: 1400px;
            margin: 0 auto;
            background-color: white;
            padding: 2rem;
        }

        h1 {
            text-align: center;
            color: #333;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        h2 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            border-bottom: 2px solid #eee;
            padding-bottom: 0.5rem;
        }

        .subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 2rem;
        }

        .content-section {
            margin-bottom: 2rem;
        }

        p {
            color: #444;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .character-showcase {
            display: flex;
            justify-content: space-around;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .character-card {
            margin: 1rem;  
            padding: 2rem;  
            width: 45%;
            min-width: 400px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .character-card:hover {
            transform: translateY(-5px);
        }

        .character-image {
            width: 530px;
            height: 370px;
            border-radius: 10px;
            padding: 1rem;
            object-fit: contain;
            cursor: pointer;
            transition: transform 0.2s ease;
        }


        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #007bff;
            padding: 1rem;
            margin: 1rem 0;
        }

        .character-info {
            padding: 1rem;
        }

        .character-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .additional-images {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        .large-image {
            width: 600px;
            height: 600px;
            object-fit: contain;
            cursor: pointer;
            transition: transform 0.2s ease;
            background: #fff;
            border-radius: 10px;
            padding: 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .large-image:hover {
            transform: scale(1.02);
        }

        .video-links {
            margin-top: 3rem;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .video-links a {
            display: block;
            color: #007bff;
            text-decoration: none;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .video-links a:hover {
            text-decoration: underline;
            color: #0056b3;
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            cursor: pointer;
            padding: 2rem;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 5px;
        }

        .close-modal {
            position: fixed;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .close-modal:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .character-image {
            cursor: pointer;
        }

        .logo a {
            display: flex; /* Зурагнуудыг зэрэгцүүлж байрлуулна */
            align-items: center; /* Босоо голд тохируулна */
            gap: 10px; /* Зураг хоорондын зай */
        }
        
        .logo img {
            height: 40px; /* Логоны өндөр */
            object-fit: contain; /* Зургийг гажилгүй харуулах */
        }
        