        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }

        :root {
            --primary-red: #e63946;
            --dark-red: #c1121f;
            --primary-yellow: #ffd166;
            --dark-yellow: #f4a261;
            --black: #121212;
            --dark-gray: #1e1e1e;
            --medium-gray: #2d2d2d;
            --light-gray: #3a3a3a;
            --white: #ffffff;
            --off-white: #f5f5f5;
        }

        body {
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 头部导航 */
        header {
            background-color: rgba(18, 18, 18, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary-red);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--white);
            text-decoration: none;
        }

        .logo i {
            color: var(--primary-yellow);
        }

        .logo-text {
            background: linear-gradient(to right, var(--white), var(--primary-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-yellow);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-yellow);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* 英雄区域 */
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(to bottom, var(--black), var(--dark-gray));
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
            opacity: 0.1;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
            opacity: 0.1;
            z-index: 0;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
            animation: fadeInLeft 1s ease-out;
        }

        .hero-image {
            flex: 1;
            text-align: center;
            animation: fadeInRight 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--primary-yellow);
            text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--off-white);
            margin-bottom: 30px;
            max-width: 600px;
        }

        .highlight {
            color: var(--primary-red);
            font-weight: bold;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: none;
        }

        .btn-primary {
            background-color: var(--primary-red);
            color: var(--white);
            border: 2px solid var(--primary-red);
        }

        .btn-primary:hover {
            background-color: var(--dark-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
        }

        .btn-secondary {
            background-color: var(--primary-yellow);
            color: var(--black);
            border: 2px solid var(--primary-yellow);
        }

        .btn-secondary:hover {
            background-color: var(--dark-yellow);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 209, 102, 0.4);
        }

        /* 漫画展示区 */
        .comic-showcase {
            padding: 100px 0;
            background-color: var(--dark-gray);
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--primary-yellow);
        }

        .comic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .comic-card {
            background-color: var(--medium-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
        }

        .comic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border-color: var(--primary-yellow);
        }

        .comic-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--primary-red);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }

        .comic-cover {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .comic-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .comic-card:hover .comic-cover img {
            transform: scale(1.05);
        }

        .comic-info {
            padding: 20px;
        }

        .comic-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--white);
        }

        .comic-meta {
            display: flex;
            justify-content: space-between;
            color: #aaa;
            font-size: 0.9rem;
        }

        .comic-genre {
            color: var(--primary-yellow);
            font-weight: bold;
        }

        /* 功能特色区 */
        .features {
            padding: 100px 0;
            background-color: var(--black);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .feature-card {
            text-align: center;
            padding: 30px;
            background-color: var(--dark-gray);
            border-radius: 10px;
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-10px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-red), var(--primary-yellow));
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--white);
        }

        /* 统计数据区 */
        .stats {
            padding: 80px 0;
            background-color: var(--dark-gray);
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .stat-item {
            padding: 30px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-yellow);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--off-white);
        }

        /* 下载区域 */
        .download {
            padding: 100px 0;
            background-color: var(--black);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .download::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
            opacity: 0.1;
            z-index: 0;
        }

        .download-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .download-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .download-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--off-white);
        }

        .platform-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .platform-btn {
            background-color: var(--medium-gray);
            padding: 20px 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--white);
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .platform-btn:hover {
            background-color: var(--primary-yellow);
            transform: translateY(-5px);
            border-color: var(--primary-red);
            color: var(--black);
        }

        .platform-icon {
            font-size: 2.5rem;
        }

        .platform-text h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .platform-text p {
            font-size: 0.9rem;
            margin: 0;
            color: #ccc;
        }

        /* 页脚 */
        footer {
            background-color: var(--black);
            padding: 60px 0 30px;
            border-top: 2px solid var(--primary-yellow);
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-yellow);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--medium-gray);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--primary-red);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--light-gray);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* 漫画气泡对话框 */
        .comic-bubble {
            position: absolute;
            background-color: var(--primary-yellow);
            color: var(--black);
            padding: 15px;
            border-radius: 20px;
            font-weight: bold;
            max-width: 200px;
            z-index: 10;
            animation: float 3s ease-in-out infinite;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .bubble1 {
            top: 20%;
            left: 5%;
            animation-delay: 0s;
        }

        .bubble2 {
            top: 60%;
            right: 8%;
            animation-delay: 1s;
        }

        .comic-bubble::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
        }

        .bubble1::after {
            bottom: -10px;
            left: 30px;
            border-width: 10px 10px 0 10px;
            border-color: var(--primary-yellow) transparent transparent transparent;
        }

        .bubble2::after {
            top: -10px;
            right: 30px;
            border-width: 0 10px 10px 10px;
            border-color: transparent transparent var(--primary-yellow) transparent;
        }

        /* 动画 */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .cta-buttons {
                justify-content: center;
            }
            
            .comic-bubble {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--black);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-top: 1px solid var(--light-gray);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .platform-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .platform-btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .feature-grid, .comic-grid, .stats-grid {
                grid-template-columns: 1fr;
            }
        }