* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #000000 0%, #0d0d0d 40%, #1a1a1a 100%);
            color: #e8e8e8;
            line-height: 1.75;
            font-weight: 400;
            overflow-x: hidden;
        }
        a {
            color: #c9a55c;
            text-decoration: none;
            transition: color .3s;
        }
        a:hover {
            color: #e0c68c;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            width: 92%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(0, 0, 0, .92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(201, 165, 92, .1);
            padding: 14px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .header-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e8e8e8;
            letter-spacing: 1px;
        }
        .header-logo span {
            color: #c9a55c;
        }
        .nav-links {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-links a {
            padding: 8px 16px;
            border-radius: 24px;
            font-size: .92rem;
            border: 1px solid transparent;
            color: #ccc;
            letter-spacing: .5px;
        }
        .nav-links a:hover {
            border-color: rgba(201, 165, 92, .5);
            color: #c9a55c;
            background: rgba(201, 165, 92, .06);
        }
        /* Hero */
        .hero {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 92vh;
            text-align: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .35;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .85) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 40px 20px;
        }
        .hero h1 {
            font-size: clamp(1.8rem, 4vw, 3.2rem);
            font-weight: 800;
            letter-spacing: 2px;
            color: #fff;
            text-shadow: 0 4px 30px rgba(0, 0, 0, .8);
            margin-bottom: 16px;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, .75);
            max-width: 620px;
            margin: 0 auto 28px;
            letter-spacing: .5px;
        }
        .hero-badges {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .hero-badge {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(201, 165, 92, .2);
            border-radius: 30px;
            padding: 6px 20px;
            font-size: .85rem;
            color: #e8dcc8;
        }
        .btn-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, #c9a55c, #a8853e);
            color: #000 !important;
            font-weight: 700;
            padding: 12px 36px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(201, 165, 92, .3);
            transition: transform .3s, box-shadow .3s;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(201, 165, 92, .5);
        }
        .btn-outline {
            background: transparent;
            color: #e8e8e8 !important;
            font-weight: 600;
            padding: 12px 36px;
            border-radius: 30px;
            border: 1px solid rgba(201, 165, 92, .5);
            transition: all .3s;
        }
        .btn-outline:hover {
            background: rgba(201, 165, 92, .1);
            border-color: #c9a55c;
        }
        /* GEO */
        .geo-intro {
            padding: 40px 0;
            background: rgba(255, 255, 255, .02);
            border-top: 1px solid rgba(201, 165, 92, .06);
            border-bottom: 1px solid rgba(201, 165, 92, .06);
        }
        .geo-intro .container {
            max-width: 900px;
        }
        .geo-intro p {
            font-size: .98rem;
            line-height: 2;
            text-align: justify;
            color: rgba(232, 232, 232, .85);
        }
        /* Section */
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 10px;
            letter-spacing: 2px;
            color: #e8e8e8;
        }
        .section-title span {
            color: #c9a55c;
        }
        .section-desc {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            color: rgba(232, 232, 232, .6);
            font-size: .92rem;
            line-height: 1.8;
        }
        /* Cards */
        .grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        .card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(201, 165, 92, .1);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            overflow: hidden;
            transition: border-color .3s, background .3s, transform .3s;
        }
        .card:hover {
            border-color: rgba(201, 165, 92, .4);
            background: rgba(255, 255, 255, .05);
            transform: translateY(-4px);
        }
        .card-icon {
            font-size: 2rem;
            margin-bottom: 14px;
        }
        .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #e8e8e8;
        }
        .card-text {
            font-size: .88rem;
            color: rgba(232, 232, 232, .68);
            line-height: 1.7;
        }
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }
        .stat-num {
            font-size: 2.6rem;
            font-weight: 800;
            color: #c9a55c;
            line-height: 1.2;
        }
        .stat-label {
            font-size: .85rem;
            color: rgba(232, 232, 232, .65);
            margin-top: 6px;
            letter-spacing: 1px;
        }
        /* Story */
        .story-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .story-img {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(201, 165, 92, .2);
        }
        .story-img img {
            width: 100%;
            height: 340px;
            object-fit: cover;
        }
        .story-text p {
            font-size: .92rem;
            color: rgba(232, 232, 232, .78);
            margin-bottom: 16px;
            text-align: justify;
        }
        /* Events */
        .event-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .event-item {
            background: rgba(0, 0, 0, .4);
            border: 1px solid rgba(201, 165, 92, .12);
            border-radius: 16px;
            overflow: hidden;
            transition: all .3s;
        }
        .event-item:hover {
            border-color: rgba(201, 165, 92, .35);
            transform: translateY(-3px);
        }
        .event-img img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-info {
            padding: 18px;
        }
        .event-info h4 {
            font-size: 1rem;
            margin-bottom: 6px;
            color: #e8e8e8;
        }
        .event-info p {
            font-size: .84rem;
            color: rgba(232, 232, 232, .6);
        }
        .event-tag {
            display: inline-block;
            background: rgba(201, 165, 92, .15);
            color: #c9a55c;
            font-size: .72rem;
            padding: 2px 12px;
            border-radius: 12px;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }
        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .testimonial-card {
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(201, 165, 92, .08);
            border-radius: 16px;
            padding: 24px;
            position: relative;
        }
        .testimonial-card::before {
            content: '“';
            font-size: 3rem;
            color: rgba(201, 165, 92, .3);
            position: absolute;
            top: 10px;
            left: 16px;
            font-family: Georgia, serif;
        }
        .testimonial-text {
            font-size: .88rem;
            color: rgba(232, 232, 232, .75);
            line-height: 1.8;
            margin-top: 10px;
        }
        .testimonial-author {
            margin-top: 16px;
            font-size: .82rem;
            color: #c9a55c;
            font-weight: 600;
        }
        /* News */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .news-item {
            background: rgba(0, 0, 0, .3);
            border: 1px solid rgba(201, 165, 92, .08);
            border-radius: 16px;
            padding: 24px;
            transition: border-color .3s;
        }
        .news-item:hover {
            border-color: rgba(201, 165, 92, .3);
        }
        .news-item h4 {
            font-size: 1.05rem;
            margin-bottom: 6px;
            color: #e8e8e8;
            font-weight: 700;
        }
        .news-date {
            background: rgba(201, 165, 92, .12);
            color: #c9a55c;
            display: inline-block;
            font-size: .75rem;
            padding: 2px 12px;
            border-radius: 12px;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .news-item p {
            font-size: .88rem;
            color: rgba(232, 232, 232, .7);
            line-height: 1.75;
        }
        /* Download */
        .download-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(201, 165, 92, .1);
            border-radius: 20px;
            padding: 40px;
        }
        .download-info h3 {
            font-size: 1.6rem;
            margin-bottom: 16px;
            color: #e8e8e8;
        }
        .download-info p {
            font-size: .92rem;
            color: rgba(232, 232, 232, .7);
            margin-bottom: 20px;
        }
        .download-img img {
            border-radius: 16px;
        }
        /* FAQ */
        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .faq-item {
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(201, 165, 92, .08);
            border-radius: 14px;
            padding: 20px 24px;
        }
        .faq-item h4 {
            font-size: 1rem;
            color: #e8e8e8;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .faq-item p {
            font-size: .88rem;
            color: rgba(232, 232, 232, .65);
            line-height: 1.8;
        }
        /* Footer */
        .site-footer {
            background: rgba(0, 0, 0, .95);
            border-top: 1px solid rgba(201, 165, 92, .1);
            padding: 50px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand p {
            font-size: .85rem;
            color: rgba(232, 232, 232, .5);
            margin-top: 12px;
            line-height: 1.7;
        }
        .footer-links h4,
        .footer-contact h4 {
            font-size: .95rem;
            color: #c9a55c;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .footer-links a {
            display: block;
            font-size: .85rem;
            color: rgba(232, 232, 232, .6);
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: #c9a55c;
        }
        .footer-contact p {
            font-size: .85rem;
            color: rgba(232, 232, 232, .5);
            margin-bottom: 10px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .05);
            padding-top: 20px;
            text-align: center;
            font-size: .8rem;
            color: rgba(232, 232, 232, .4);
        }
        .footer-bottom p {
            margin-bottom: 6px;
        }
        .footer-bottom a {
            color: rgba(232, 232, 232, .5);
        }
        .footer-bottom a:hover {
            color: #c9a55c;
        }
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .story-wrap,
            .download-wrap {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .nav-links {
                justify-content: center;
                margin-top: 10px;
            }
            .nav-links a {
                padding: 6px 12px;
                font-size: .8rem;
            }
            .header-inner {
                flex-direction: column;
            }
        }