<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #fffbeb 0%, #ffedd5 50%, #fef3c7 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(to right, #fbbf24, #f59e0b, #f59e0b);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
        }

        .logo h1 {
            font-size: 28px;
            font-weight: bold;
        }

        .logo p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
        }

        nav {
            display: flex;
            gap: 8px;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            transition: all 0.3s;
            font-weight: 500;
        }

        nav a:hover {
            background: rgba(251, 146, 60, 0.5);
        }

        nav a.active {
            background: white;
            color: #f59e0b;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transform: scale(1.05);
        }

        .mobile-menu {
            display: none;
        }

        /* Hero Section */
        .hero {
            padding: 80px 20px;
        }

        .hero-content {
            background: linear-gradient(to right, #fbbf24, #fb923c, #f59e0b);
            border-radius: 24px;
            padding: 80px 60px;
            text-align: center;
            color: white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .hero h2 {
            font-size: 56px;
            margin-bottom: 24px;
        }

        .hero p {
            font-size: 24px;
            margin-bottom: 40px;
            color: #fffbeb;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .stat-card .number {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .stat-card .label {
            font-size: 14px;
        }

        .btn-primary {
            background: white;
            color: #f59e0b;
            padding: 16px 48px;
            border-radius: 50px;
            border: none;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            background: #fffbeb;
            transform: scale(1.05);
        }

        /* Section */
        section {
            padding: 80px 20px;
        }

        .section-alt {
            background: rgba(255, 255, 255, 0.5);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 40px;
            color: #1f2937;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .section-header p {
            font-size: 18px;
            color: #6b7280;
        }

        /* Grid */
        .grid {
            display: grid;
            gap: 24px;
        }

        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        /* Category Card */
        .category-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            cursor: pointer;
        }

        .category-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transform: translateY(-8px);
        }

        .category-header {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .category-header h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .category-header .count {
            font-size: 14px;
            opacity: 0.9;
        }

        .category-body {
            padding: 20px;
            text-align: center;
            color: #6b7280;
        }

        /* Comic Card */
        .comic-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .comic-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transform: translateY(-8px);
        }

        .comic-cover {
            height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            padding: 24px;
        }

        .comic-info {
            padding: 20px;
        }

        .comic-title {
            font-size: 20px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .comic-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .comic-stats {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #f59e0b;
            font-weight: bold;
        }

        .views {
            font-size: 12px;
            color: #6b7280;
        }

        .status {
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 4px;
        }

        .status-ongoing {
            background: #d1fae5;
            color: #065f46;
        }

        .status-completed {
            background: #e5e7eb;
            color: #374151;
        }

        /* About Section */
        .about-content {
            background: white;
            border-radius: 24px;
            padding: 60px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .about-content h3 {
            font-size: 28px;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .about-content h4 {
            font-size: 20px;
            color: #1f2937;
            margin-top: 32px;
            margin-bottom: 16px;
        }

        .about-content p {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .about-content ul {
            list-style: none;
            margin-bottom: 24px;
        }

        .about-content li {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }

        .about-content li::before {
            content: "•";
            color: #f59e0b;
            font-weight: bold;
            font-size: 20px;
            margin-right: 12px;
        }

        .highlight-box {
            background: linear-gradient(to right, #fef3c7, #fde68a);
            padding: 24px;
            border-radius: 12px;
            margin-top: 24px;
        }

        .highlight-box p {
            color: #1f2937;
            font-weight: 500;
            margin: 0;
        }

        /* Subscribe Section */
        .subscribe-section {
            background: linear-gradient(to right, #fbbf24, #fb923c, #f59e0b);
        }

        .subscribe-content {
            background: white;
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .subscribe-content h2 {
            font-size: 40px;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .subscribe-content p {
            font-size: 18px;
            color: #6b7280;
            margin-bottom: 32px;
        }

        .subscribe-form {
            display: flex;
            gap: 16px;
            max-width: 700px;
            margin: 0 auto 24px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 16px 24px;
            border: 2px solid #d1d5db;
            border-radius: 50px;
            font-size: 16px;
            outline: none;
        }

        .subscribe-form input:focus {
            border-color: #f59e0b;
        }

        .btn-subscribe {
            background: linear-gradient(to right, #f59e0b, #fb923c);
            color: white;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-subscribe:hover {
            transform: scale(1.05);
        }

        .privacy-note {
            font-size: 14px;
            color: #6b7280;
        }

        /* App Download Section */
        .app-section {
            background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #000000 100%);
        }

        .app-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .app-info {
            color: white;
        }

        .app-info h2 {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .app-info > p {
            font-size: 20px;
            color: #d1d5db;
            margin-bottom: 32px;
        }

        .app-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .app-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #d1d5db;
            margin-bottom: 16px;
        }

        .download-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-download {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .btn-ios {
            background: linear-gradient(to right, #f59e0b, #fb923c);
            color: white;
        }

        .btn-android {
            background: linear-gradient(to right, #10b981, #14b8a6);
            color: white;
        }

        .btn-download:hover {
            transform: scale(1.05);
        }

        .app-qr {
            background: linear-gradient(135deg, #fbbf24, #fb923c);
            border-radius: 24px;
            padding: 48px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .qr-content {
            background: white;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
        }

        .qr-content h3 {
            font-size: 24px;
            color: #1f2937;
            margin-bottom: 24px;
        }

        .qr-code {
            width: 200px;
            height: 200px;
            background: #e5e7eb;
            margin: 0 auto 24px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
        }

        .qr-content p {
            color: #6b7280;
            margin: 0;
        }

        /* Footer */
        footer {
            background: linear-gradient(to right, #1f2937, #111827, #000000);
            color: white;
            padding: 60px 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 18px;
            color: #fbbf24;
            margin-bottom: 20px;
        }

        .footer-section p,
        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #fbbf24;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 32px;
            text-align: center;
        }

        .footer-bottom p {
            color: #9ca3af;
            margin-bottom: 16px;
        }

        /* Icons */
        .icon {
            width: 40px;
            height: 40px;
        }

        .icon-small {
            width: 20px;
            height: 20px;
        }

        .icon-medium {
            width: 24px;
            height: 24px;
        }

        .icon-large {
            width: 64px;
            height: 64px;
        }

        .icon-xl {
            width: 128px;
            height: 128px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }

            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .app-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .hero h2 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-header h2 {
                font-size: 32px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .subscribe-form {
                flex-direction: column;
            }
        }
    </style>