* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #1a0202 0%, #2d0808 30%, #1f0404 100%);
            color: #f0e8d0;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: rgba(74, 10, 10, 0.92);
            backdrop-filter: blur(6px);
            border-bottom: 2px solid #c9913e;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 6px 18px rgba(0,0,0,0.7);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #f7d98c;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 #4a0a0a;
            background: linear-gradient(135deg, #c9913e, #f7e09c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f0e8d0;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            padding: 6px 10px;
            border-radius: 30px;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            color: #f7d98c;
            background: rgba(201, 145, 62, 0.2);
            border-color: #c9913e;
        }
        /* H1 */
        .hero-section {
            text-align: center;
            padding: 60px 20px 40px;
            background: radial-gradient(circle at 20% 30%, #661414, #2e0505);
            border-bottom: 3px solid #c9913e;
            position: relative;
        }
        .hero-section h1 {
            font-size: 2.6rem;
            color: #f7d98c;
            text-shadow: 0 0 12px #991b1b;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }
        .hero-section p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #e6dcc0;
        }
        .geo-extra {
            margin-top: 24px;
            font-size: 1rem;
            color: #d4c4a2;
            border-top: 1px dashed #c9913e66;
            padding-top: 18px;
        }
        /* 区块通用 */
        .section-card {
            background: linear-gradient(145deg, #3f0b0b, #2a0606);
            border: 1px solid #c9913e55;
            border-radius: 28px;
            padding: 36px 30px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        }
        .section-title {
            font-size: 2rem;
            color: #f7d98c;
            border-left: 6px solid #c9913e;
            padding-left: 18px;
            margin-bottom: 28px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .card-gold {
            background: rgba(74, 10, 10, 0.6);
            border-radius: 24px;
            padding: 22px 18px;
            border: 1px solid #c9913e77;
            backdrop-filter: blur(2px);
            transition: transform 0.2s;
        }
        .card-gold:hover {
            transform: scale(1.02);
            border-color: #f7d98c;
        }
        .card-gold img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            border: 2px solid #c9913e;
            margin-bottom: 14px;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #c9913e, #a5742b);
            color: #1a0202;
            font-weight: 700;
            padding: 14px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            border: none;
            box-shadow: 0 6px 0 #6b4a1c;
            transition: all 0.15s;
        }
        .btn-cta:hover {
            background: #dba551;
            transform: translateY(-2px);
            box-shadow: 0 8px 0 #6b4a1c;
        }
        .faq-item {
            background: rgba(30, 5, 5, 0.5);
            border-radius: 20px;
            padding: 20px 24px;
            margin-bottom: 18px;
            border-left: 5px solid #c9913e;
        }
        .faq-item strong {
            color: #f7d98c;
            font-size: 1.15rem;
        }
        .news-card {
            background: #2d0808;
            border-radius: 24px;
            padding: 20px;
            border: 1px solid #c9913e55;
        }
        .news-card h3 {
            color: #f7d98c;
            margin-bottom: 8px;
        }
        .news-date {
            font-size: 0.85rem;
            color: #b89f6a;
            margin-bottom: 8px;
        }
        .news-card p {
            color: #d9cfb5;
        }
        .img-full {
            width: 100%;
            border-radius: 20px;
            border: 2px solid #c9913e;
            margin: 16px 0;
        }
        footer {
            background: #1a0202;
            border-top: 3px solid #c9913e;
            padding: 40px 0 20px;
            text-align: center;
            color: #b8a889;
        }
        footer a {
            color: #f0dbb0;
            text-decoration: none;
            margin: 0 8px;
        }
        footer a:hover {
            color: #f7d98c;
        }
        .footer-links {
            margin: 20px 0;
        }
        .footer-links a {
            padding: 0 12px;
            border-right: 1px solid #c9913e66;
        }
        .footer-links a:last-child {
            border-right: none;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 {
                grid-template-columns: 1fr;
            }
            .hero-section h1 {
                font-size: 1.8rem;
            }
            .nav-links {
                gap: 12px;
                justify-content: center;
                margin-top: 10px;
            }
        }