        /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Calibri, Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #1C1C1C;
            color: #F2F2F2;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 导航栏样式 */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(194, 157, 89, 0.2);
            margin-bottom: 0px;
            background: #0F0F0F;
        }
        
        .logo-container {
            display: flex;
            flex-direction: column;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(90deg, #D4AF37, #FFA500);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .logo img {
            height: auto; /* 初始高度 */
            width: auto;
            max-width: 350px;
            object-fit: contain;
            transition: all 0.3s;
        }
        
        .slogan {
            color: #aaa;
            font-size: 11px;
            margin-top: 0px;
            letter-spacing: 1px;
        }
        
        /* 桌面导航菜单 */
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .desktop-nav > ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        .desktop-nav > ul > li {
            position: relative;
        }
        
        .desktop-nav a {
            color: #aaa;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: color 0.3s, text-shadow 0.3s;
            letter-spacing: 1px;
        }
        
        .desktop-nav a:hover {
            color: #D4AF37;
            text-shadow: 0 0 8px rgba(194, 157, 89, 0.7);
        }
        
        /* 下拉菜单 */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #1A1A1A;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
            padding: 10px 0;
            min-width: 200px;
            list-style: none;
            padding-left: 0;
            display: none;
            z-index: 100;
            border: 1px solid rgba(194, 157, 89, 0.2);
        }
        
        .desktop-nav > ul > li:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu li {
            padding: 8px 20px;
            position: relative;
        }

        .dropdown-menu li::before {
            content: none;
        }
        
        .dropdown-menu a {
            color: #ccc;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .dropdown-menu a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #D4AF37;
        }
        
        /* 语言切换 */
        .language-switcher {
            position: relative;
            margin-left: 15px;
        }
        
        .language-btn {
            background: transparent;
            border: none;
            color: #aaa;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .language-btn:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #D4AF37;
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: #1A1A1A;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
            padding: 10px 0;
            min-width: 150px;
            display: none;
            z-index: 100;
            border: 1px solid rgba(194, 157, 89, 0.2);
        }
        
        .language-switcher:hover .language-dropdown {
            display: block;
        }
        
        .language-dropdown a {
            display: flex;
            align-items: center;
            padding: 8px 15px;
            color: #ccc;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .language-dropdown a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #D4AF37;
        }
        
        /* 移动菜单按钮 - 初始隐藏 */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #aaa;
            font-size: 24px;
            cursor: pointer;
        }

        .mobile-menu-btn:hover {
            color: #D4AF37;
        }
        
        /* 移动导航菜单 */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #000000;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: top;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            padding: 20px;
            border-left: 1px solid rgba(194, 157, 89, 0.2);
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav ul {
            list-style: none;
            text-align: center;
            margin-bottom: 30px;
            width: 100%;
        }
        
        .mobile-nav li {
            margin: 25px 0 0 25px;
            text-align: left;
        }
        
        .mobile-nav a {
            color: #ccc;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .mobile-nav a:hover {
            color: #D4AF37;
        }
        
        .mobile-submenu {
            list-style: none;
            padding-left: 0;
            margin-top: 10px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }
        
        .mobile-submenu.active {
            max-height: 500px;
        }
        
        .mobile-submenu li {
            margin: 15px 0;
        }
        
        .mobile-submenu a {
            font-size: 1.2rem;
            color: #aaa;
        }
        
        .mobile-submenu a:hover {
            color: #D4AF37;
        }
        
        .mobile-submenu-toggle {
            background: transparent;
            border: none;
            color: #ccc;
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: 10px;
        }

        .mobile-submenu-toggle:hover {
            color: #D4AF37;
        }
        
        .mobile-language-switcher {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .mobile-language-switcher a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #ccc;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .mobile-language-switcher a:hover {
            background: rgba(255, 215, 0, 0.2);
            color: #D4AF37;
        }
        
        .mobile-language-switcher a.active {
            background: rgba(255, 215, 0, 0.2);
            color: #D4AF37;
        }

        .close-mobile-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            background: transparent;
            border: none;
            color: #ccc;
            font-size: 28px;
            cursor: pointer;
        }
        
        .create-btn {
            background: linear-gradient(90deg, #D4AF37, #FFA500);
            color: #000 !important;
            font-size: 16px !important;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        }
        
        .create-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.5);
        }
        
        /* 轮播区域样式 */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .carousel-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            z-index: 1;
            /* background: rgba(0, 0, 0, 0.3); */
        }
        
        .carousel-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #D4AF37, #FFA500, #FF8C00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        
        .carousel-content p {
            font-size: 1.2rem;
            color: #F2F2F2;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .carousel-btn {
            background: linear-gradient(90deg, #D4AF37, #D4B67A);
            color: #1C1C1C;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
        }
        
        .carousel-btn:hover {
            background: linear-gradient(90deg, #D4B67A, #D4AF37);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(194, 157, 89, 0.5);
        }
        
        .carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(242, 242, 242, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .carousel-dot.active {
            background: #D4AF37;
            transform: scale(1.2);
        }
        
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(28, 28, 28, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s;
            border: 1px solid rgba(194, 157, 89, 0.2);
        }
        
        .carousel-arrow:hover {
            background: rgba(194, 157, 89, 0.2);
            color: #F2F2F2;
        }
        
        .carousel-prev {
            left: 30px;
        }
        
        .carousel-next {
            right: 30px;
        }
        
        /* 卡片区域样式 */

        .carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin-bottom: 60px;
            height: 400px;
            display: flex;
            align-items: center;
        }

        /* 悬停时暂停动画 */
        .carousel-container:hover .characters-container {
            animation-play-state: paused;
        }

        /* 悬停提示文字 */
        .carousel-container::after {
            /* content: 'Hover to Pause'; */
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: #D4AF37;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
            pointer-events: none;
        }

        .carousel-container:hover::after {
            opacity: 1;
        }


        /* 移动端适配 */
        @media (max-width: 768px) {
            .carousel-container::after {
                display: none;
            }
            .carousel-arrow {
                display: none;
            }
            .logo img{
                width: 300px; /* 移动端更小的宽度 */
            }
            .slogan {
              display: none;
            }
        }

           .carousel-section {
            margin-bottom: 60px;
        }
        
        .carousel-section h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
            color: #D4AF37;
            text-shadow: 0 0 15px rgba(194, 157, 89, 0.5);
            position: relative;
            padding-bottom: 15px;
        }
        
        .carousel-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #D4AF37, #D4B67A);
            border-radius: 2px;
        }
     
         /* 确保动画可以暂停 */
        .characters-container {
            display: flex;
            gap: 25px;
            width: max-content;
            animation: slide 30s linear infinite;
            animation-play-state: running;
        }
        
        .character-card {
            width: 320px;
            height: 240px;
            perspective: 1000px;
            cursor: pointer;
            flex-shrink: 0;
        }
        
        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 20px;
        }
        
        .character-card:hover .card-inner {
            transform: rotateY(180deg);
        }
        
        .card-front {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            align-items: center;
            padding: 0px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            align-items: center;
            padding: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        
        .card-front {
            color: white;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-around;
            background: linear-gradient(135deg, #4b4b4b, #202020);
        }
        
        .card-back {
            background: #000000;
            color: white;
            transform: rotateY(180deg);
            flex-direction: row;
            align-items: center;
            justify-content: space-around;
            border: 1px solid rgba(194, 157, 89, 0.2);
        }
        
        .character-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #D4AF37;
        }
        
        .character-desc {
            font-size: 0.9rem;
            color: #aaa;
            line-height: 1.5;
        }
        
        .card-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            flex: 1;
        }
        
        .card-back-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            flex: 1;
            padding-right: 20px;
        }
        
        .qr-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .character-icon {
            width: auto;
            height: 100%;
            max-width: 320px;
            /* background: white; */
            border-radius: 25px; 
            margin-right: 20px;
            object-fit: cover;
            /* border: 4px solid rgba(255, 255, 255, 0.2); */
            filter: drop-shadow(0 5px 15px rgba(194, 157, 89, 0.3));
        }
        
        .character-icon-small {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 15px;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.2);
        }
                       
        /* 新增文创产品板块样式 */
        .merchandise-section {
            margin: 60px 0;
        }

        .merchandise-section h2 {
            font-size: 2rem;
            margin-bottom: 80px;
            text-align: center;
            color: #D4AF37;
            text-shadow: 0 0 15px rgba(194, 157, 89, 0.5);
            position: relative;
            padding-bottom: 15px;
        }
        
        .merchandise-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #D4AF37, #D4B67A);
            border-radius: 2px;
        }

        .merchandise-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .merchandise-item {
            background: #000000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(194, 157, 89, 0.3);
            transition: transform 0.3s;
            border: 1px solid rgba(194, 157, 89, 0.2);
        }
        
        .merchandise-item:hover {
            transform: translateY(-10px);
        }
        
        .merchandise-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .merchandise-content {
            padding: 20px;
            text-align: center;
        }
        
        .merchandise-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #D4AF37;
            font-weight: 600;
        }

        .merchandise-title a{
            color: #D4AF37;
            text-decoration: none;
        }
        
        /* 视频展示区域 */
        .video-section {
            margin: 60px 0;
        }

        .video-section h2 {
            font-size: 2rem;
            margin-bottom: 80px;
            text-align: center;
            color: #D4AF37;
            text-shadow: 0 0 15px rgba(194, 157, 89, 0.5);
            position: relative;
            padding-bottom: 15px;
        }
        
        .video-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #D4AF37, #D4B67A);
            border-radius: 2px;
        }
        
        .video-container {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .main-video {
            flex: 2;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(194, 157, 89, 0.3);
        }
        
        .main-video iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        .video-thumbnails {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .video-thumbnail {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(194, 157, 89, 0.3);
            transition: transform 0.3s;
        }
        
        .video-thumbnail:hover {
            transform: translateY(-5px);
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        
        .video-thumbnail .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
            opacity: 0.8;
            transition: opacity 0.3s;
            text-shadow: 0 0 10px rgba(194, 157, 89, 0.7);
        }
        
        .video-thumbnail:hover .play-icon {
            opacity: 1;
        }
        
        .video-thumbnail .video-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 10px;
            color: white;
            font-size: 0.9rem;
        }
        
        /* 企业介绍板块 */
        .company-section {
            margin: 60px 0;
        }
        
        .company-section h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
            color: #D4AF37;
            text-shadow: 0 0 15px rgba(194, 157, 89, 0.5);
            position: relative;
            padding-bottom: 15px;
        }
        
        .company-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #D4AF37, #D4B67A);
            border-radius: 2px;
        }
        
        .company-subtitle {
            text-align: center;
            color: #aaa;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }
        
        .company-container {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .brand-story {
            flex: 1;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            border: 1px solid rgba(194, 157, 89, 0.2);
            box-shadow: 0 15px 35px rgba(194, 157, 89, 0.3);
        }
        
        .brand-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .brand-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 30px;
            color: white;
        }
        
        .brand-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #D4AF37;
        }
        
        .brand-desc {
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.5;
            color: #aaa;
        }
        
        .brand-link {
            display: inline-block;
            color: #D4AF37;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s, text-shadow 0.3s;
        }
        
        .brand-link:hover {
            color: #D4AF37;
            text-shadow: 0 0 8px rgba(194, 157, 89, 0.7);
        }
        
        .company-features {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .feature-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 140px;
            transition: transform 0.3s;
            border: 1px solid rgba(194, 157, 89, 0.2);
            box-shadow: 0 10px 20px rgba(194, 157, 89, 0.3);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .feature-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #D4AF37;
        }
        
        /* 新闻板块 */
        .news-section {
            margin: 60px 0;
        }
        
        .news-section h2 {
            font-size: 2rem;
            margin-bottom: 80px;
            text-align: center;
            color: #D4AF37;
            text-shadow: 0 0 15px rgba(194, 157, 89, 0.5);
            position: relative;
            padding-bottom: 15px;
        }
        
        .news-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #D4AF37, #D4B67A);
            border-radius: 2px;
        }
        
        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            background: #000000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(194, 157, 89, 0.3);
            transition: transform 0.3s;
            border: 1px solid rgba(194, 157, 89, 0.2);
        }
        
        .news-card:hover {
            transform: translateY(-10px);
        }
        
        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-date {
            color: #D4AF37;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .news-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
            color: white;
        }
        
        .news-excerpt {
            color: #aaa;
            min-height: 60px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .read-more {
            display: inline-block;
            color: #D4AF37;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s, text-shadow 0.3s;
        }
        
        .read-more:hover {
            color: #D4AF37;
            text-shadow: 0 0 8px rgba(194, 157, 89, 0.7);
        }
        
        /* 底部区域 */
        .footer {
            text-align: center;
            padding: 40px 0;
            border-top: 1px solid rgba(194, 157, 89, 0.2);
            color: #888;
            background: #0F0F0F;
        }
        
        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 20px;
        }
        
        .social-links a {
            color: #D4AF37;
            font-size: 1.5rem;
            transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
        }
        
        .social-links a:hover {
            color: #D4B67A;
            transform: translateY(-5px);
            text-shadow: 0 0 10px rgba(194, 157, 89, 0.7);
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #aaa;
            font-size: 1rem;
        }

        .contact-item a{
            color: #aaa;
            text-decoration: none;
        }

        .contact-item a:hover {
            color: #D4AF37;
        }
        
        .contact-item i {
            color: #D4AF37;
        }
        
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .footer-links a {
            color: #888;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #D4AF37;
        }
        
        /* 动画效果 */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-320px * 5 - 25px * 4)); }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none !important;
            }
            
            .mobile-menu-btn {
                display: block !important;
            }
            
            .hero-carousel {
                height: 500px;
            }
            
            .carousel-content h1 {
                font-size: 2.2rem;
            }
            
            .carousel-content p {
                font-size: 1rem;
            }
            
            .characters-container {
                flex-direction: row;
                animation: slide-mobile 30s linear infinite;
            }
            
            .character-card {
                width: 360px;
                height: 270px;
            }
            
            .merchandise-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .video-container {
                flex-direction: column;
            }
            
            .main-video iframe {
                height: 350px;
            }
            
            .video-thumbnails {
                flex-direction: column;
            }
            
            .news-container {
                grid-template-columns: 1fr;
            }
            
            .company-container {
                flex-direction: column;
            }
            
            .company-features {
                grid-template-columns: 1fr;
            }
            
            @keyframes slide-mobile {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-320px * 5 - 25px * 4)); }
            }
        }

        @media (max-width: 480px) {
            .merchandise-container {
                grid-template-columns: 1fr;
            }
        }
