:root {
            --primary: #b45309;
            --dark: #1a1a1a;
            --accent: #fbbf24;
            --gold: #d4a574;
            --text: #e5d5b8;
            --card-bg: #241d17;
            --border: #b45309;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
            color: var(--text);
            line-height: 1.6;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            min-height: 100vh;
        }
        .navbar {
            background: rgba(10, 8, 6, 0.95);
            border-bottom: 3px solid var(--border);
            padding: 12px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 1300px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 18px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, var(--primary), #7c2d12);
            color: #fff;
            box-shadow: 0 4px 24px rgba(180, 83, 9, 0.5);
            border-color: var(--accent);
            transform: translateY(-2px);
        }
        .nav-links .brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 2px;
            border-right: 2px solid var(--border);
            padding-right: 20px;
            margin-right: 5px;
        }
        .section {
            padding: 60px 30px;
            max-width: 1300px;
            margin: 0 auto;
        }
        .geo-intro {
            padding: 50px 30px 40px;
            max-width: 1300px;
            margin: 0 auto;
            background: linear-gradient(180deg, rgba(180, 83, 9, 0.12), transparent);
        }
        h1 {
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent), var(--primary), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: 1px;
            line-height: 1.3;
        }
        h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 3px;
            position: relative;
        }
        h2::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .geo-text {
            font-size: 17px;
            line-height: 1.8;
            color: #d4c4a8;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 30px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(180, 83, 9, 0.2);
        }
        .hero-card {
            background: linear-gradient(145deg, #1a1a1a, #2d1810);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
        }
        .hero-card.flame {
            box-shadow: 0 0 40px rgba(180, 83, 9, 0.25), inset 0 0 30px rgba(180, 83, 9, 0.06);
        }
        .hero-card img {
            max-width: 360px;
            width: 100%;
            border-radius: 16px;
            border: 3px solid var(--border);
            margin-bottom: 25px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .hero-card p {
            font-size: 16px;
            line-height: 1.8;
            color: #d4c4a8;
            max-width: 800px;
            margin: 0 auto;
        }
        .btn {
            display: inline-block;
            padding: 14px 36px;
            background: linear-gradient(135deg, var(--primary), #7c2d12);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(180, 83, 9, 0.4);
            margin: 10px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--accent);
            box-shadow: none;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-card {
            background: linear-gradient(145deg, #1f1a15, #2d2118);
            border: 2px solid rgba(180, 83, 9, 0.4);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            transition: all 0.4s;
        }
        .stat-card:hover {
            border-color: var(--accent);
            box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
            transform: translateY(-6px);
        }
        .stat-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
        .stat-label {
            font-size: 14px;
            color: #a89a85;
            margin-top: 8px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        .adv-card {
            background: linear-gradient(145deg, #1f1a15, #241d17);
            border: 2px solid var(--border);
            border-radius: 18px;
            padding: 35px 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }
        .adv-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0.6;
        }
        .adv-card:hover {
            box-shadow: 0 8px 40px rgba(180, 83, 9, 0.3);
            transform: translateY(-6px);
        }
        .adv-icon {
            font-size: 42px;
            margin-bottom: 18px;
        }
        .adv-card h3 {
            font-size: 20px;
            color: var(--gold);
            margin-bottom: 12px;
            font-weight: 700;
        }
        .adv-card p {
            font-size: 14px;
            color: #a89a85;
            line-height: 1.6;
        }
        .story-wrap {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
            background: linear-gradient(145deg, rgba(180, 83, 9, 0.08), transparent);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(180, 83, 9, 0.2);
        }
        .story-wrap img {
            max-width: 380px;
            width: 100%;
            border-radius: 16px;
            border: 3px solid var(--border);
        }
        .story-text {
            flex: 1;
            min-width: 280px;
        }
        .story-text h3 {
            font-size: 26px;
            color: var(--accent);
            margin-bottom: 15px;
        }
        .story-text p {
            font-size: 15px;
            line-height: 1.8;
            color: #c4b49a;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .event-card {
            background: linear-gradient(145deg, #1f1a15, #241d17);
            border: 2px solid rgba(180, 83, 9, 0.3);
            border-radius: 18px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s;
        }
        .event-card:hover {
            border-color: var(--accent);
            box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
        }
        .event-card .date-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), #7c2d12);
            color: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .event-card h3 {
            font-size: 18px;
            color: var(--gold);
            margin-bottom: 12px;
        }
        .event-card p {
            font-size: 14px;
            color: #a89a85;
        }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .testi-card {
            background: linear-gradient(145deg, #1f1a15, #241d17);
            border: 2px solid rgba(180, 83, 9, 0.25);
            border-radius: 18px;
            padding: 30px;
            position: relative;
        }
        .testi-card::before {
            content: "\201C";
            font-size: 60px;
            color: var(--primary);
            position: absolute;
            top: 10px;
            left: 15px;
            opacity: 0.4;
            font-family: Georgia, serif;
        }
        .testi-card p {
            font-size: 14px;
            line-height: 1.7;
            color: #c4b49a;
            margin-bottom: 20px;
            padding-top: 20px;
        }
        .testi-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testi-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }
        .testi-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--gold);
        }
        .testi-role {
            font-size: 12px;
            color: #8a7d6b;
        }
        .guide-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        .guide-step {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
            border-radius: 16px;
            border: 1px solid rgba(180, 83, 9, 0.15);
            position: relative;
        }
        .guide-step .step-num {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 15px;
        }
        .guide-step h3 {
            font-size: 17px;
            color: var(--gold);
            margin-bottom: 8px;
        }
        .guide-step p {
            font-size: 13px;
            color: #a89a85;
            line-height: 1.6;
        }
        .cta-section {
            background: linear-gradient(145deg, rgba(180, 83, 9, 0.2), rgba(26, 26, 26, 0.9));
            border-radius: 24px;
            text-align: center;
            padding: 60px 40px;
            border: 2px solid var(--border);
        }
        .cta-section h3 {
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 16px;
            color: #d4c4a8;
            max-width: 700px;
            margin: 0 auto 25px;
        }
        .news-list {
            max-width: 900px;
            margin: 0 auto;
        }
        .news-item {
            background: linear-gradient(145deg, #1f1a15, #241d17);
            border: 2px solid rgba(180, 83, 9, 0.2);
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        .news-item:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 30px rgba(180, 83, 9, 0.15);
        }
        .news-date {
            display: inline-block;
            background: rgba(180, 83, 9, 0.15);
            color: var(--accent);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .news-item h3 {
            font-size: 19px;
            color: var(--gold);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-item p {
            font-size: 14px;
            line-height: 1.7;
            color: #b8a890;
        }
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: linear-gradient(145deg, #1f1a15, #241d17);
            border: 2px solid rgba(180, 83, 9, 0.2);
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 18px;
            transition: all 0.3s;
        }
        .faq-item:hover {
            border-color: var(--primary);
        }
        .faq-question {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .faq-question::before {
            content: "Q";
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
            flex-shrink: 0;
        }
        .faq-answer {
            font-size: 15px;
            line-height: 1.7;
            color: #c4b49a;
            padding-left: 40px;
        }
        .footer {
            background: #0e0c0a;
            border-top: 3px solid var(--border);
            padding: 50px 30px 30px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4 {
            font-size: 16px;
            color: var(--accent);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }
        .footer-col p {
            font-size: 14px;
            color: #8a7d6b;
            line-height: 1.7;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(180, 83, 9, 0.2);
            font-size: 14px;
            color: #6b5d4e;
        }
        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .metal-border {
            position: relative;
        }
        .metal-border::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fbbf24, #b45309, #fbbf24, transparent);
            border-radius: 4px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            .section {
                padding: 40px 16px;
            }
            .hero-card {
                padding: 30px 20px;
            }
            .nav-links {
                gap: 5px;
            }
            .nav-links a {
                font-size: 13px;
                padding: 8px 10px;
            }
            .story-wrap {
                padding: 20px;
            }
            .cta-section {
                padding: 30px 20px;
            }
        }
        img {
            max-width: 100%;
            height: auto;
        }