        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background: #0a0a0f;
        }
        
        /* 暗黑风格滚动条 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1a1a1f;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #d4af37, #9b6eff);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #f5cb5c, #b87eff);
        }
        
        /* 导航栏样式 - 暗黑风格 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .navbar-hidden {
            transform: translateY(-100%);
        }
        
        .navbar-scrolled {
            background: rgba(10, 10, 15, 0.98);
            box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
        }
        
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
            color: #b8b8c8;
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .nav-link:hover {
            color: #d4af37;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #9b6eff);
            border-radius: 2px;
            transition: transform 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            transform: translateX(-50%) scaleX(1);
        }
        
        .nav-link.active {
            color: #d4af37;
        }
        
        /* Banner 容器样式 - 暗黑风格 */
        .banner-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
        }
        
        .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.5s ease;
        }
        
        .banner-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.8) 100%);
            z-index: 1;
        }
        
        .banner-content {
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }
        
        .banner-title {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
        }
        
        .banner-description {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 滚动指示器 - 暗黑风格 */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            cursor: pointer;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }
        
        .banner-sticker {
            position: absolute;
            cursor: pointer;
            transition: transform 0.3s ease, filter 0.3s ease;
            z-index: 15;
            animation: float 4s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }
        
        .banner-sticker:hover {
            transform: scale(1.15);
            filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.5));
        }
        
        /* 标题样式 - 暗黑风格 */
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #d4af37, #9b6eff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #9b6eff);
            border-radius: 2px;
        }
        
        /* 作品展示区域 - 暗黑风格 */
        .works-showcase {
            min-height: 100vh;
            background: linear-gradient(135deg, #0f0f15 0%, #0a0a0f 100%);
            padding: 100px 0 60px;
        }
        
        /* 卡片叠放区域 */
        .cards-stack {
            position: relative;
            height: 450px;
            margin-bottom: 20px;
        }
        
        .stack-card {
            position: absolute;
            width: 100%;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: rgba(20, 20, 30, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 50%;
        }
        
        .stack-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .stack-card .card-title {
            padding: 12px;
            font-size: 14px;
            font-weight: 600;
            color: #e0e0e8;
            text-align: center;
        }
        
        .stack-card.active {
            border: 1px solid #d4af37;
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
        }
        
        /* 左侧大图区域 */
        .featured-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: rgba(20, 20, 30, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .featured-info {
            margin-top: 24px;
        }
        
        .featured-info h2 {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #d4af37, #9b6eff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 12px;
        }
        
        .featured-info p {
            color: #b8b8c8;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .featured-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .featured-tags span {
            padding: 4px 12px;
            background: rgba(212, 175, 55, 0.1);
            color: #d4af37;
            border-radius: 20px;
            font-size: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        /* 滚动提示 */
        .scroll-hint {
            text-align: center;
            color: #d4af37;
            font-size: 12px;
            margin-top: 15px;
            padding: 8px;
            animation: fadeInUp 1s ease;
            margin-top: 50%;
        }
        
        /* 服务卡片 - 暗黑风格 */
        .service-card {
            background: rgba(20, 20, 30, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.3);
        }
        
        .service-card h3 {
            color: #e0e0e8;
        }
        
        .service-card p {
            color: #9a9ab0;
        }
        
        /* 合作伙伴logo - 暗黑风格 */
        .partner-logo {
            background: rgba(20, 20, 30, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
            background: rgba(30, 30, 45, 0.9);
            border-color: rgba(212, 175, 55, 0.3);
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
            filter: brightness(0.9) sepia(0.5) hue-rotate(5deg) saturate(1.2);
            transition: filter 0.3s ease;
        }
        
        .partner-logo:hover img {
            filter: brightness(1) sepia(0) hue-rotate(0deg) saturate(1);
        }
        
        /* 关于团队区域 */
        #about {
            background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
        }
        
        #about h2 {
            background: linear-gradient(135deg, #d4af37, #9b6eff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        #about p {
            color: #b8b8c8;
        }
        
        /* 联系我们区域 */
        #contact {
            background: linear-gradient(135deg, #0f0f15 0%, #0a0a0f 100%);
        }
        
        /* 加载动画 */
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(212, 175, 55, 0.2);
            border-top-color: #d4af37;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* 模态框 - 暗黑风格 */
        .modal-overlay {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(8px);
        }
        
        .qrcode-modal {
            animation: modalFadeIn 0.3s ease;
            background: linear-gradient(135deg, #1a1a2a, #0f0f1a);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .qr-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            background: rgba(30, 30, 45, 0.6);
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .qr-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
            background: rgba(40, 40, 60, 0.8);
            border-color: rgba(212, 175, 55, 0.5);
        }
        
        /* 按钮样式 - 暗黑风格 */
        .btn-primary {
            background: linear-gradient(135deg, #d4af37, #9b6eff);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-outline {
            border: 2px solid #d4af37;
            color: #d4af37;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background: linear-gradient(135deg, #d4af37, #9b6eff);
            color: white;
            transform: scale(1.05);
            border-color: transparent;
        }
        
        /* 页脚 */
        footer {
            background: #050507;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        footer h4 {
            color: #d4af37;
        }
        
        footer ul li a, footer ul li {
            color: #8a8aa0;
        }
        
        footer ul li a:hover {
            color: #d4af37;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .banner-title {
                font-size: 2rem !important;
            }
            .banner-description {
                font-size: 0.9rem !important;
                padding: 0 20px;
            }
            .works-showcase .grid {
                grid-template-columns: 1fr !important;
            }
            .cards-stack {
                margin-top: 40px;
                height: 400px;
            }
            .featured-image img {
                height: 300px;
            }
        }