* {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(145deg, #fff8f0 0%, #fef3c7 40%, #ffedd5 100%);
    color: #292524;
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #1c1917;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #7f1d1d 0%, #ea580c 100%);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(127, 29, 29, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Geo Intro */
.geo-intro {
    position: relative;
    padding: 80px 24px 60px;
    text-align: center;
    background: linear-gradient(180deg, #7f1d1d 0%, #ea580c 100%);
    color: #fff;
    overflow: hidden;
}

.geo-intro::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(254, 243, 199, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.geo-intro::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.geo-intro .container {
    position: relative;
    z-index: 2;
}

.geo-intro h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.geo-intro .geo-desc {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.geo-intro .geo-img {
    margin: 32px auto 0;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* Section */
.section {
    padding: 70px 24px;
}

.section-alt {
    background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
}

.section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #7f1d1d;
    position: relative;
}

.section .section-sub {
    text-align: center;
    font-size: 16px;
    color: #78716c;
    max-width: 720px;
    margin: 0 auto 48px;
}

/* Data Stats */
.data-stats {
    background: linear-gradient(135deg, #1c1917 0%, #292524 60%, #44403c 100%);
    color: #fff;
    padding: 70px 24px;
}

.data-stats .section-title {
    color: #fbbf24;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.stat-card img {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 12px;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #d6d3d1;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* Core Advantages */
.advantages {
    background: linear-gradient(145deg, #fff8f0 0%, #ffedd5 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.advantage-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(127, 29, 29, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #fef3c7;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ea580c, #fbbf24, #ea580c);
    background-size: 200% 100%;
    animation: flow 3s linear infinite;
}

@keyframes flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(127, 29, 29, 0.15);
}

.advantage-card img {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 18px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #7f1d1d;
}

.advantage-card p {
    font-size: 14px;
    color: #78716c;
    line-height: 1.7;
}

/* Brand Story */
.brand-story {
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 50%, #ea580c 100%);
    color: #fff;
}

.brand-story .section-title {
    color: #fbbf24;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.story-content img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.story-text h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.story-text p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

/* Deep Content */
.deep-content {
    background: linear-gradient(145deg, #fef3c7 0%, #fff7ed 100%);
}

.deep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.deep-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deep-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(127, 29, 29, 0.15);
}

.deep-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.deep-card-body {
    padding: 24px;
}

.deep-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1c1917;
}

.deep-card-body p {
    font-size: 14px;
    color: #78716c;
    line-height: 1.7;
}

/* Featured Events */
.featured-events {
    background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
    color: #fff;
}

.featured-events .section-title {
    color: #fbbf24;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.event-card {
    border-radius: 24px;
    padding: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: #fbbf24;
    transform: scale(1.02);
}

.event-card img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.event-card h3 {
    font-size: 20px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 14px;
    color: #d6d3d1;
    line-height: 1.7;
}

.event-card .tag {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

/* News */
.news-list {
    background: linear-gradient(145deg, #fff8f0 0%, #ffedd5 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.news-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #fef3c7;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(127, 29, 29, 0.12);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-body {
    padding: 24px;
}

.news-date {
    font-size: 13px;
    color: #ea580c;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.news-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1c1917;
    line-height: 1.4;
}

.news-body p {
    font-size: 14px;
    color: #78716c;
    line-height: 1.65;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 50%, #ea580c 100%);
    color: #fff;
}

.testimonials .section-title {
    color: #fbbf24;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.testimonial-card img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 2px solid #fbbf24;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card .author {
    font-size: 14px;
    font-weight: 700;
    color: #fbbf24;
}

/* FAQ */
.faq {
    background: linear-gradient(145deg, #fff8f0 0%, #fef3c7 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ea580c;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(127, 29, 29, 0.1);
    transform: translateX(4px);
}

.faq-item img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #7f1d1d;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: #57534e;
    line-height: 1.8;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fbbf24 100%);
    text-align: center;
    padding: 80px 24px;
}

.cta h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta .btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1c1917;
    color: #fbbf24;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: #fbbf24;
}

.cta .btn img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

/* Coverage */
.coverage {
    background: linear-gradient(145deg, #1c1917 0%, #292524 100%);
    color: #fff;
}

.coverage .section-title {
    color: #fbbf24;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.coverage-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.coverage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.coverage-card img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 auto 16px;
}

.coverage-card h3 {
    font-size: 18px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.coverage-card p {
    font-size: 14px;
    color: #d6d3d1;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: #1c1917;
    color: #a8a29e;
    padding: 60px 24px 30px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a8a29e;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #292524;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #78716c;
    line-height: 2;
}

.footer-bottom a {
    color: #a8a29e;
    margin: 0 4px;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 900px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .geo-intro h1 {
        font-size: 28px;
    }
    
    .header-inner {
        flex-direction: column;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .section {
        padding: 50px 16px;
    }
}

@media (max-width: 600px) {
    .nav-links a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .geo-intro h1 {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta h2 {
        font-size: 24px;
    }
}