
@font-face {
    font-family: 'Dela Gothic One';
    src: url('/css/font/DelaGothicOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('/css/font/AlibabaPuHuiTi-3-65-Medium		000.ttf') format('truetype');
    font-weight: 500; 
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Alibaba PuHuiTi Bold Bold';
    src: url('/css/font/AlibabaPuHuiTi-3-85-Bold.ttf') format('truetype');
    font-weight: 500; 
    font-style: normal;
    font-display: swap;
}
#translate {
    background-color: #000000;
    color: #ffffff;
    border:0px solid #999;
    border-radius: 8px;
    padding: 5px 12px;
    display: inline-block;
}
#translate select {
    background-color: #000000;
    color: #fff;
    border: 2px solid #999;
    border-radius: 50px;
    padding: 4px 8px;
    font-size: 14px;
}
#translate select:hover,
#translate select:focus {
    border-color: #ccc;
    outline: none;
}
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;font-family: 'Alibaba PuHuiTi Bold Bold';
        }
        #pcRoot {
            width: 1200px;
            margin: 0 auto;
            background-color: #0A0A0F;
        }

        body {
            background-color: #0A0A0F;
            overflow-x: hidden;
        }

        @media (max-width: 1200px) {
            body {
                overflow-x: hidden !important;
            }
        }

        :root {
            --primary-purple: #781EC8;
            --primary-pink: #E50968;
            --card-bg: #121218;
            --card-hover: #1A1A24;
            --border-color: #282838;
        }
        .text-main-gray { color: #E5E5E5; }
        .text-muted-gray { color: #9999AA; }
        .bg-card { background-color: var(--card-bg); }
        .bg-gradient-main { 
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
            border: none;
            transition: all 0.3s ease;
            color: #fff;
            border-radius: 8px;
            padding: 8px 24px;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(120, 30, 200, 0.3);
        }
        .lang-dropdown { 
            position: relative; 
            display: inline-block;
            margin-right: 1rem;
        }
        .lang-current {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: 8px;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            color: #E5E5E5;
        }
        .lang-current:hover { background-color: var(--card-hover); }
        .lang-dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            min-width: 120px;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
            z-index: 99;
        }
        .lang-dropdown:hover .lang-dropdown-content { display: block; }
        .lang-dropdown-content a {
            display: block;
            padding: 9px 16px;
            color: #E5E5E5;
            text-decoration: none;
        }
        .lang-dropdown-content a:hover {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
            color: white;
        }
        .lang-zh, .lang-en, .lang-fr, .lang-es { display: none; }
        body.zh .lang-zh { display: block; }
        body.en .lang-en { display: block;font-family: 'Alibaba PuHuiTi Bold';}
        body.fr .lang-fr { display: block; }
        body.es .lang-es { display: block; }

        nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(8,8,16,0.95);
            padding: 16px 24px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 1200px;
        }
        .nav-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-logo-box {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        .nav-menu {
            display: flex;
            gap: 32px;
        }
        .nav-menu a {
            color: var(--text-main-gray);
            text-decoration: none;color:#fff;font-family: 'Alibaba PuHuiTi Bold';
        }
  
        .mobile-menu-btn {
            display: none !important;
        }
        .mobile-menu {
            display: none !important;
        }


        .carousel-slide {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .carousel-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
        }
        .carousel-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            padding: 0 10%;
            z-index: 2;
        }

        .carousel-text h1 {
            font-size: 48px;
            font-weight: bold;
            color: #E50968;
            line-height: 1.2;
            margin-bottom: 10px;font-family: 'Alibaba PuHuiTi Bold';padding-top:20%
        }
        .carousel-text h1 span {
            color: #fff;font-family: 'Alibaba PuHuiTi Bold';
        }
        .carousel-text p {
            font-size: 16px;
            color: #e0e0e0;
            line-height: 1.8;
            max-width: 650px;font-family: 'Alibaba PuHuiTi Bold';
        }
		
        .scope-section {
            width: 1200px;
            padding: 4rem 2rem;
            background-color: #0A0A0F;
        }
        .scope-title {
            font-size: 34px;
            font-weight: bold;
            color: #FFA500;
            margin-bottom: 2rem;width:auto;font-family: 'Alibaba PuHuiTi Bold';
        }
        .scope-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .scope-card {
            background-color: #1A1A1A;
            border: 1px solid #333333;
            border-radius: 8px;
            padding: 1.5rem;
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .scope-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(120, 30, 200, 0.2);
            border-color: #781EC8;
            background-color: #1A1A24;
        }
        .scope-card h3 {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 1px;
            line-height: 1.4;
        }
        .scope-card.commercial {
            color: #39FF14;font-family: 'Alibaba PuHuiTi Bold';
        }
        .scope-card.film {
            color: #FF69B4;font-family: 'Alibaba PuHuiTi Bold';
        }
        .scope-card.drama {
            color: #FFFFFF;font-family: 'Alibaba PuHuiTi Bold';
        }
        .scope-card.design {
            color: #87CEEB;font-family: 'Alibaba PuHuiTi Bold';
        }

        .portfolio-section {
            width: 1200px;
            padding: 4rem 2rem;
            background-color: #0A0A0F;
            border-top: 1px solid #282838;
            border-bottom: 1px solid #282838;
        }
        .portfolio-title {
            font-size: 34px;
            font-weight: bold;
            color: #FFA500;
            margin-bottom: 2rem;width:auto；font-family: 'Alibaba PuHuiTi Bold';
        }
        .portfolio-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .portfolio-card {
            position: relative;
            background-color: #1A1A1A;
            border: 1px solid #333333;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 16/9;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .portfolio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(120, 30, 200, 0.2);
            border-color: #781EC8;
        }
        .portfolio-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        .portfolio-card:hover img {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            opacity:1;
            transition: opacity 0.3s ease;
        }
        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }
        .portfolio-tag {
            display: inline-block;
            background-color: #781EC8;
            color: #fff;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 0.5rem;
        }
        .portfolio-title-text {
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            margin-top: 0.5rem;
        }
        .portfolio-card.logo-card {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            color: #fff;
            letter-spacing: 4px;
        }
        .portfolio-card.logo-card:hover {
            background-color: #1A1A24;
        }

        .star-project-section {
            width: 1200px;
            padding: 4rem 2rem;
            background-color: #0A0A0F;
            border-bottom: 1px solid #282838;
        }
        .star-project-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        .star-project-title {
            font-size: 36px;
            font-weight: bold;
            color: #39FF14;
            letter-spacing: 2px;
            line-height: 1.2;width:200px
        }
        .star-project-description {
            flex: 1;
            margin-left: 2rem;
            font-size: 14px;
            color: #e0e0e0;
            line-height: 1.6;
        }
        .star-project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }
        .star-project-grid img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .star-project-grid img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }

        .works-display-section {
            width: 1200px;
            padding: 4rem 2rem;
            background-color: #0A0A0F;
            border-bottom: 1px solid #282838;
        }
        .works-display-container {
            display: flex;
            gap: 1rem;
        }
        .works-display-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .works-display-title {
            font-size: 36px;
            font-weight: bold;
            color: #E50968;
            letter-spacing: 2px;
            line-height: 1.2; width:220px
        }
        .works-display-left img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .works-display-left img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }
        .works-display-right {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
        }
        .works-display-right img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .works-display-right img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }

        .works-grid-section {
            width: 1200px;
            padding: 3rem 3rem;
            background-color: #1A1A1A;
            border-bottom: 1px solid #282838;
        }
        .works-grid-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .works-grid-row-1 {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .works-grid-title {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            font-size: 36px;
            font-weight: bold;
            color: #87CEEB;
            letter-spacing: 2px;
            line-height: 1.2;
        }
        .works-grid-images-1 {
            flex: 3;
            display: flex;
            gap: 1rem;
        }
        .works-grid-images-1 img {
            width: 50%;
            height: auto;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .works-grid-images-1 img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }
        .works-grid-row-2 {
            display: flex;
            gap: 1rem;
        }
        .works-grid-row-2 img {
            flex: 1;
            height: auto;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .works-grid-row-2 img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }

        .works-grid-section-2 {
            width: 1200px;
            padding: 4rem 2rem;
            background-color: #0A0A0F;
            border-bottom: 1px solid #282838;
        }
        .works-grid-row-1-2 {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .works-grid-title-2 {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: bold;
            color: #FFFFFF;
            letter-spacing: 2px;
            line-height: 1.2;
        }
        .works-grid-images-1-2 {
            flex: 4;
            display: flex;
            gap: 1rem;
        }
        .works-grid-images-1-2 img {
            flex: 1;
            height: auto;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .works-grid-images-1-2 img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }
        .works-grid-row-2-2 {
            display: flex;
            gap: 1rem;
        }
        .works-grid-row-2-2 img {
            height: auto;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .works-grid-row-2-2 img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }
        .works-grid-row-2-2 img:nth-child(1),
        .works-grid-row-2-2 img:nth-child(5) {
            flex: 1;
        }
        .works-grid-row-2-2 img:nth-child(2),
        .works-grid-row-2-2 img:nth-child(4) {
            flex: 1;
        }
        .works-grid-row-2-2 img:nth-child(3) {
            flex: 2;
        }

        .team-section {
            width: 1200px;
            padding: 4rem 2rem;
            background-color: #0A0A0F;
            border-bottom: 1px solid #282838;
        }
        .team-header {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .team-title {
            flex: 1;
            position: relative;
            font-size: 36px;
            font-weight: bold;
            color: #FFFFFF;
            letter-spacing: 2px;
            line-height: 1.2;
        }
        .team-title::before,
        .team-title::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #FFFFFF;
        }
        .team-title::before {
            top: -10px;
        }
        .team-title::after {
            bottom: -10px;
        }
        .team-description {
            flex: 3;
            font-size: 14px;
            color: #e0e0e0;
            line-height: 1.6;
        }
        .team-row {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .team-images {
            flex: 5;
            display: flex;
            gap: 0.5rem;
        }
        .team-images img {
            flex: 1;
            height: auto;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .team-images img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }
        .team-badge {
            background-image: url('/css/ebg2.jpg');  
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
            text-align: center;
            line-height: 1.2;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .team-badge:hover {
            transform: scale(1.05);
        }

        .contact-section {
            width: 1200px;
            padding: 4rem 2rem;
            background-color: #0A0A0F;
            border-bottom: 1px solid #282838;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .contact-title {
            font-size: 40px;
            font-weight: bold;
            color: #FFFFFF;
            letter-spacing: 4px;
            line-height: 1.2;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;flex: 1
        }
        .contact-title:hover {
            color: #E50968;
            transform: scale(1.05);
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;flex: 1
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #FFFFFF;
            font-size: 18px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .contact-item:hover {
            color: #E50968;
            transform: translateX(10px);
        }
        .contact-icon {
            width: 32px;
            height: 32px;
            border: 2px solid #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .contact-item:hover .contact-icon {
            border-color: #E50968;
            background-color: #E50968;
            color: #FFFFFF;
        }

        .banner-ad-bar {
            width: 1200px;
            padding:3rem 1rem;
            background: linear-gradient(90deg,#781EC8,#E50968);
            text-align:center;
            transition: all 0.3s ease;
        }
        .banner-ad-bar:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(120, 30, 200, 0.5);
        }
        .ad-btn {
            padding:0.75rem 2rem;
            background:#fff;
            color:#781EC8;
            border:none;
            border-radius:999px;
            cursor:pointer;
            font-weight:bold;
            transition: all 0.3s ease;
        }
        .ad-btn:hover {
            transform: scale(1.1);
            background-color: #f0f0f0;
        }

        footer {
            padding:3rem 1rem;
            background:#080810;
            border-top:1px solid var(--border-color);
            text-align:center;
            color:var(--text-muted-gray);
            width: 1200px;
            color:#fff;
        }
        .social-icon a {
            display:inline-flex;
            width:44px;
            height:44px;
            border-radius:50%;
            background:var(--card-bg);
            border:1px solid var(--border-color);
            color:#fff;
            align-items:center;
            justify-content:center;
            text-decoration:none;
            margin:0 8px;
            transition: all 0.3s ease;
        }
        .social-icon a:hover {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
            transform: translateY(-5px);
        }

        .extra-images-section {
            width: 1200px;
            background: #080810;
            padding: 2rem 0;
            text-align: center;
        }
        .extra-images-section img {
            max-width: 100%;
            border-radius: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .extra-images-section img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) saturate(1.2);
        }
        
        #pcRoot {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .text-xl {
            font-size: 1.3rem;
            font-weight: bold;color:#fff;font-family: 'Alibaba PuHuiTi Bold';
        }
        h4 {
            margin: 1.5rem 0 1rem 0;
            border-left: 3px solid #781EC8;
            padding-left: 1rem;
        }

        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        .video-modal-content {
            position: relative;
            width: 80%;
            max-width: 900px;
            background-color: #0A0A0F;
            padding: 20px;
            border-radius: 8px;
        }
        .video-modal-close {
            position: absolute;
            top: -40px;
            right: -40px;
            color: white;
            font-size: 36px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .video-modal-close:hover {
            color: #E50968;
            transform: scale(1.2);
        }
        .video-modal video {
            width: 100%;
            height: auto;

            border-radius: 4px;
        }
		
		.hero-carousel .carousel-slide {
    position: relative;
    overflow: hidden;
    height: 140vh;
}

.carousel-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0;
}
.carousel-overlay,
.carousel-content {
    position: relative;
    z-index: 1;
}

 @media (min-width:769px){
       .hero-carousel {
            width: 1200px;
            height: 100vh;
            min-height: 300px;
            overflow: hidden;
            position: relative;
        }
        }
 @media (max-width:768px){
       .hero-carousel {
            width: 1200px;
            height: 60vh;
            min-height: 300px;
            overflow: hidden;
            position: relative;
        }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #pcRoot {
            width: 1200px;
            margin: 0 auto;
            background-color: #0A0A0F;
        }

        body {
            background-color: #0A0A0F;
            overflow-x: hidden;
        }
        @media (max-width: 1200px) {
            body {
                overflow-x: hidden !important;
            }
        }

        :root {
            --primary-purple: #781EC8;
            --primary-pink: #E50968;
            --card-bg: #121218;
            --card-hover: #1A1A24;
            --border-color: #282838;
        }
        .text-main-gray { color: #E5E5E5; }
        .text-muted-gray { color: #9999AA; }
        .bg-card { background-color: var(--card-bg); }
        .bg-gradient-main { 
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
            border: none;
            transition: all 0.3s ease;
            color: #fff;
            border-radius: 8px;
            padding: 8px 24px;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(120, 30, 200, 0.3);
        }
        .lang-dropdown { 
            position: relative; 
            display: inline-block;
            margin-right: 1rem;
        }
        .lang-current {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: 8px;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            color: #E5E5E5;
        }
        .lang-current:hover { background-color: var(--card-hover); }
        .lang-dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            min-width: 120px;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
            z-index: 99;
        }
        .lang-dropdown:hover .lang-dropdown-content { display: block; }
        .lang-dropdown-content a {
            display: block;
            padding: 9px 16px;
            color: #E5E5E5;
            text-decoration: none;
        }
        .lang-dropdown-content a:hover {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
            color: white;
        }
        .lang-zh, .lang-en, .lang-fr, .lang-es { display: none; }
        body.zh .lang-zh { display: block; }
        body.en .lang-en { display: block; }
        body.fr .lang-fr { display: block; }
        body.es .lang-es { display: block; }

        nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(8,8,16,0.95);
            padding: 16px 24px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 1200px;
        }
        .nav-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-logo-box {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        .nav-menu {
            display: flex;
            gap: 32px;
        }
        .nav-menu a {
            color: var(--text-main-gray);
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none !important;
        }
        .mobile-menu {
            display: none !important;
        }

        .hero-carousel {
            width: 1200px;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            position: relative;
        }
        .carousel-slide {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .carousel-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
        }
        .carousel-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            padding: 0 10%;
            z-index: 2;
        }

        .scope-section { padding: 4rem 1rem; width: 1200px; }
        .scope-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 1.5rem;
        }
        .scope-card {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border-color);
            aspect-ratio: 16/9;
        }
        .scope-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .scope-overlay {
            position: absolute;
            inset: 0;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 70%);
        }

        .portfolio-section {
            padding: 4rem 1rem;
            background: #080810;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            width: 1200px;
        }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(220px, 1fr));
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .portfolio-card {
            position: relative;
            border-radius: 0.75rem;
            overflow: hidden;
            aspect-ratio: 16/9;
        }
        .portfolio-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .star-project-section {
            padding: 4rem 1rem;
            background: #080810;
            width: 1200px;
        }
        .star-project-container {
            display: grid;
            grid-template-columns: 1fr 3fr;
            gap: 2rem;
            align-items: center;
        }
        .gallery-row {
            display: flex;
            gap: 1rem;
        }
        .gallery-item {
            flex:1;
            aspect-ratio:1/1;
            border-radius:0.5rem;
            overflow:hidden;
            border:1px solid var(--border-color);
        }
        .gallery-item img {
            width:100%;
            height:100%;
            object-fit:cover;
        }

        .banner-ad-bar {
            width: 1200px;
            padding:3rem 1rem;
            background: linear-gradient(90deg,#781EC8,#E50968);
            text-align:center;
        }
        .ad-btn {
            padding:0.75rem 2rem;
            background:#fff;
            color:#781EC8;
            border:none;
            border-radius:999px;
            cursor:pointer;
            font-weight:bold;
        }

        footer {
            padding:3rem 1rem;
            background:#080810;
            border-top:1px solid var(--border-color);
            text-align:center;
            color:var(--text-muted-gray);
            width: 1200px;
        }
        .social-icon a {
            display:inline-flex;
            width:44px;
            height:44px;
            border-radius:50%;
            background:var(--card-bg);
            border:1px solid var(--border-color);
            color:#fff;
            align-items:center;
            justify-content:center;
            text-decoration:none;
            margin:0 8px;
        }

        /* 额外图片区域 */
        .extra-images-section {
            width: 1200px;
            background: #080810;
            padding: 2rem 0;
            text-align: center;
        }
        .extra-images-section img {
            max-width: 100%;
            border-radius: 20px;
            margin-bottom: 20px;
        }
        
        /* 所有内容模块统一宽度1200px，居中 */
        #pcRoot {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .text-xl {
            font-size: 1.3rem;
            font-weight: bold;
        }
        h4 {
            margin: 1.5rem 0 1rem 0;
            border-left: 3px solid #781EC8;
            padding-left: 1rem;
        }