        :root {
            --primary: #0066cc;
            --primary-bright: #1a7dff;
            --primary-deep: #004d99;
            --primary-soft: #e8f3ff;
            --primary-glow: rgba(0, 102, 204, 0.18);
            --accent: #00a8b5;
            --accent-soft: #e0f7f9;
            --accent-glow: rgba(0, 168, 181, 0.16);
            --navy-deep: #060f1e;
            --navy: #0b1a30;
            --navy-mid: #0f2240;
            --navy-light: #152a4d;
            --text-primary: #0f172a;
            --text-secondary: #334155;
            --text-muted: #5f6b7a;
            --text-on-dark: #e2e8f0;
            --text-on-dark-muted: #94a3b8;
            --bg-white: #ffffff;
            --bg-slate: #f7f9fb;
            --bg-cool: #eef2f7;
            --border: #dde4ed;
            --border-light: #e8edf4;
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
            --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 6px 22px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.08);
            --radius-xs: 6px;
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 22px;
            --radius-xl: 30px;
            --radius-full: 9999px;
            --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            color: var(--text-primary);
            background-color: var(--bg-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ========== HEADER (与首页完全一致) ========== */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 84px;
            display: flex;
            align-items: center;
            z-index: 100;
            background: transparent;
            transition: background var(--transition), box-shadow var(--transition);
        }
        .header.scrolled {
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: var(--shadow-sm);
            position: fixed;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 32px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            transition: opacity var(--transition);
        }
        .logo-area:hover {
            opacity: 0.85;
        }
        .logo-icon {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            border-radius: 8px;
            background: linear-gradient(135deg, #0066cc 0%, #00a8b5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
            font-size: 16px;
            letter-spacing: -0.5px;
            box-shadow: 0 2px 10px rgba(0, 102, 204, 0.25);
        }
        .logo-text {
            font-size: 20px;
            font-weight: 800;
            color: #0b1a30;
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .logo-text .logo-accent {
            color: #0066cc;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        .nav-item {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            padding: 8px 15px;
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-item:hover {
            color: #0066cc;
            background: rgba(0, 102, 204, 0.05);
        }
        .nav-item.nav-cta {
            background: #0066cc;
            color: #fff;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 22px;
            margin-left: 2px;
            letter-spacing: 0.1px;
            box-shadow: 0 2px 10px rgba(0, 102, 204, 0.22);
        }
        .nav-item.nav-cta:hover {
            background: #004d99;
            color: #fff;
            box-shadow: 0 4px 16px rgba(0, 102, 204, 0.32);
            transform: translateY(-1px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-shrink: 0;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: #0b1a30;
            border-radius: 2px;
            margin: 5px 0;
            transition: all var(--transition);
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            padding: 160px 0 60px;
            background: linear-gradient(155deg, #f0f6fc 0%, #e4eef8 25%, #f5f8fb 55%, #eaf3fa 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle at 50% 44%, rgba(0, 168, 181, 0.05) 0%, transparent 65%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }
        .page-hero .hero-content {
            position: relative;
            z-index: 1;
        }
        .page-hero .section-tag {
            display: inline-block;
            font-size: 12.5px;
            font-weight: 700;
            color: #0066cc;
            background: rgba(0, 102, 204, 0.06);
            padding: 6px 15px;
            border-radius: 18px;
            margin-bottom: 14px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .page-hero h1 {
            font-size: 40px;
            font-weight: 850;
            color: #060f1e;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }
        .page-hero .subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }

        /* ========== COUPON LIST ========== */
        .coupon-section {
            padding: 50px 0;
            background: var(--bg-white);
        }
        .coupon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 22px;
            margin-top: 28px;
        }
        .coupon-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: all var(--transition-slow);
            position: relative;
        }
        .coupon-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
            transform: translateY(-3px);
        }
        .coupon-tag {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .badge-live {
            background: #10b981;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 12px;
            letter-spacing: 0.5px;
        }
        .badge-expire {
            background: #f43f5e;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 12px;
        }
        .coupon-title {
            font-size: 20px;
            font-weight: 800;
            color: #060f1e;
        }
        .coupon-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .coupon-code-box {
            background: #f7f9fb;
            border: 1px dashed #cbd5e1;
            border-radius: var(--radius-xs);
            padding: 14px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #0066cc;
            transition: all var(--transition);
        }
        .coupon-code-box:hover {
            border-color: #0066cc;
            background: #f0f7ff;
        }
        .btn-copy {
            background: none;
            border: none;
            color: #0066cc;
            font-weight: 700;
            cursor: pointer;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: all var(--transition);
        }
        .btn-copy:hover {
            color: #004d99;
        }
        .coupon-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-deal {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 700;
            background: #0066cc;
            color: #fff;
            border-radius: 24px;
            transition: all var(--transition);
            text-decoration: none;
            border: none;
            cursor: pointer;
        }
        .btn-deal:hover {
            background: #004d99;
            box-shadow: 0 6px 18px rgba(0, 102, 204, 0.25);
        }
        .btn-deal.outline {
            background: transparent;
            border: 2px solid #cbd5e1;
            color: #0066cc;
        }
        .btn-deal.outline:hover {
            border-color: #0066cc;
            background: rgba(0, 102, 204, 0.03);
        }

        /* ========== HOW TO USE ========== */
        .howto-section {
            padding: 70px 0;
            background: var(--bg-slate);
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 36px;
        }
        .step-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 30px 24px;
            text-align: center;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            position: relative;
        }
        .step-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .step-num {
            width: 44px;
            height: 44px;
            background: #0066cc;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            margin: 0 auto 14px;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
        }
        .step-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: #060f1e;
            margin-bottom: 8px;
        }
        .step-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ========== SAVING TIPS ========== */
        .tips-section {
            padding: 70px 0;
            background: #fff;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 30px;
        }
        .tip-card {
            background: #f9fbfd;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 28px 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: all var(--transition);
        }
        .tip-card:hover {
            border-color: #0066cc40;
            box-shadow: var(--shadow-sm);
        }
        .tip-icon {
            font-size: 32px;
            flex-shrink: 0;
        }
        .tip-content h4 {
            font-size: 17px;
            font-weight: 700;
            color: #060f1e;
            margin-bottom: 6px;
        }
        .tip-content p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ========== SEO EXPAND SECTION ========== */
        .expand-section {
            padding: 70px 0;
            background: var(--bg-slate);
        }
        .expand-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }
        .expand-card {
            background: #fff;
            padding: 28px 22px;
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            text-align: center;
        }
        .expand-card h3 {
            font-size: 18px;
            font-weight: 750;
            color: #060f1e;
            margin-bottom: 10px;
        }
        .expand-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 70px 0;
            background: #fff;
        }
        .faq-list {
            max-width: 760px;
            margin: 30px auto 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            transition: all var(--transition);
            cursor: pointer;
        }
        .faq-item:hover {
            border-color: #0066cc40;
            box-shadow: var(--shadow-sm);
        }
        .faq-item h3 {
            font-size: 15px;
            font-weight: 700;
            color: #060f1e;
            margin-bottom: 6px;
        }
        .faq-item p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ========== FOOTER ========== */
        .footer {
            padding: 40px 0;
            background: #060f1e;
            border-top: 1px solid #1a2d44;
            color: #64748b;
            font-size: 13px;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #94a3b8;
            transition: color var(--transition);
            font-weight: 500;
            font-size: 12.5px;
        }
        .footer-links a:hover {
            color: #cbd5e1;
        }
        .footer-copy {
            font-size: 12px;
            color: #556577;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1100px) {
            .header {
                position: relative;
                height: auto;
                padding: 14px 0;
                background: #fff;
                border-bottom: 1px solid var(--border-light);
            }
            .header-inner {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
                justify-content: space-between;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 2px;
                padding-top: 8px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-item {
                font-size: 13px;
                padding: 10px 14px;
                width: 100%;
                text-align: center;
                border-radius: 8px;
            }
            .nav-item.nav-cta {
                margin-left: 0;
                margin-top: 6px;
            }
            .page-hero {
                padding: 60px 0 50px;
            }
            .page-hero h1 {
                font-size: 30px;
            }
            .coupon-grid {
                grid-template-columns: 1fr;
            }
            .steps-grid,
            .expand-grid {
                grid-template-columns: 1fr;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 640px) {
            .page-hero h1 {
                font-size: 26px;
            }
            .coupon-card {
                padding: 22px 18px;
            }
        }