* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(145deg, #fff5f0 0%, #ffe8e0 100%);
            color: #2d1b1b;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #ff6b4a, #ff3366);
            padding: 16px 0;
            box-shadow: 0 8px 32px rgba(255, 51, 102, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .navbar .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
            letter-spacing: 1px;
        }
        .navbar .logo span {
            background: linear-gradient(45deg, #ffd966, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 16px;
            border-radius: 30px;
            transition: 0.3s;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,255,255,0.3);
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 60px 20px 20px;
            background: linear-gradient(135deg, #ff6b4a, #ff3366, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: 2px;
        }
        /* 通用区块 */
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b4a, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 40px;
            text-align: center;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: linear-gradient(145deg, #fff0eb, #ffe1d6);
            border-radius: 28px;
            padding: 28px 22px;
            box-shadow: 0 12px 40px rgba(255, 51, 102, 0.15);
            transition: 0.4s;
            border: 1px solid rgba(255, 107, 74, 0.2);
            backdrop-filter: blur(8px);
        }
        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(255, 51, 102, 0.25);
            border-color: #ff6b4a;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 16px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .card h3 {
            font-size: 1.4rem;
            color: #c0392b;
            margin-bottom: 10px;
        }
        .card p {
            color: #4a2c2c;
            font-size: 0.98rem;
        }
        .card .date-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b4a, #ff3366);
            color: #fff;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        /* geo */
        .geo-intro {
            background: linear-gradient(145deg, #fff5f0, #ffe8e0);
            border-radius: 40px;
            padding: 40px 32px;
            margin: 20px 0 60px;
            border-left: 8px solid #ff6b4a;
            font-size: 1.1rem;
            line-height: 2;
        }
        /* FAQ */
        .faq-item {
            background: #fff8f5;
            border-radius: 30px;
            padding: 24px 28px;
            margin-bottom: 20px;
            box-shadow: 0 4px 16px rgba(255, 107, 74, 0.1);
            border: 1px solid #ffd9cc;
        }
        .faq-item h3 {
            color: #c0392b;
            font-size: 1.3rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-item p {
            color: #4a2c2c;
        }
        /* 页脚 */
        .footer {
            background: #1a0f0f;
            color: #f0d5cc;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }
        .footer a {
            color: #ffb3a0;
            transition: 0.3s;
        }
        .footer a:hover {
            color: #ff6b4a;
        }
        .footer .links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #332222;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #a08078;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b4a, #ff3366);
            color: #fff;
            padding: 16px 48px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 12px 30px rgba(255, 51, 102, 0.4);
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 18px 40px rgba(255, 51, 102, 0.5);
        }
        .text-center {
            text-align: center;
        }
        .mt-30 {
            margin-top: 30px;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem; }
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 12px; }
        }