* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f2e 50%, #2d1b69 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 146, 60, 0.25);
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: #fb923c;
    text-shadow: 0 0 20px rgba(251, 146, 60, 0.5);
    text-decoration: none;
}
.logo-area img {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
    font-family: inherit;
}
.nav-links a:hover {
    color: #4ade80;
    text-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.main {
    padding-top: 68px;
}
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px;
    position: relative;
}
.section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(90deg, #fb923c, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: inherit;
}
.section-desc {
    text-align: center;
    color: #a0a0b0;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 50px;
    font-family: inherit;
}
.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 30% 50%, rgba(45, 27, 105, 0.4) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(251, 146, 60, 0.15) 0%, transparent 50%);
    padding: 80px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(251, 146, 60, 0.1);
}
.hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(251, 146, 60, 0.3);
    font-family: inherit;
}
.hero img {
    max-width: 90%;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.15);
}
.geo-intro {
    background: rgba(20, 15, 35, 0.7);
    border-top: 1px solid rgba(74, 222, 128, 0.1);
    border-bottom: 1px solid rgba(74, 222, 128, 0.1);
}
.geo-intro .geo-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    color: #c5c5d0;
    text-align: left;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    padding: 40px 50px;
    border: 1px solid rgba(251, 146, 60, 0.15);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.stat-card {
    text-align: center;
    padding: 35px 20px;
    background: rgba(20, 15, 35, 0.85);
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.1), 0 0 40px rgba(74, 222, 128, 0.05);
    transition: all 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(251, 146, 60, 0.2), 0 0 60px rgba(74, 222, 128, 0.1);
}
.stat-card .num {
    font-size: 46px;
    font-weight: 800;
    background: linear-gradient(90deg, #fb923c, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: inherit;
}
.stat-card .label {
    color: #a0a0b0;
    font-size: 15px;
    margin-top: 10px;
    font-family: inherit;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.adv-card {
    background: rgba(20, 15, 35, 0.85);
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(20, 15, 35, 0.9), rgba(20, 15, 35, 0.9)), linear-gradient(135deg, #fb923c, #4ade80);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(251, 146, 60, 0.15), 0 0 50px rgba(74, 222, 128, 0.1);
}
.adv-card img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
}
.adv-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
    font-family: inherit;
}
.adv-card p {
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.7;
    font-family: inherit;
}
.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.story-content img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.15);
    flex-shrink: 0;
}
.story-text p {
    color: #b0b0c0;
    font-size: 16px;
    margin-bottom: 16px;
    font-family: inherit;
}
.timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.timeline-grid::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #fb923c, #4ade80);
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
    font-family: inherit;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fb923c;
    box-shadow: 0 0 15px rgba(251, 146, 60, 0.6);
}
.timeline-item h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    font-family: inherit;
}
.timeline-item p {
    color: #a0a0b0;
    font-size: 15px;
    font-family: inherit;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: rgba(20, 15, 35, 0.85);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.05);
    font-family: inherit;
}
.testimonial-card .quote {
    color: #c5c5d0;
    font-size: 15px;
    margin-bottom: 15px;
    font-style: italic;
    font-family: inherit;
}
.testimonial-card .author {
    color: #fb923c;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.event-card {
    background: rgba(20, 15, 35, 0.9);
    border: 1px solid rgba(251, 146, 60, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.1);
    transition: all 0.3s;
    font-family: inherit;
}
.event-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(251, 146, 60, 0.25);
}
.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.event-card .event-info {
    padding: 20px;
}
.event-card .event-info h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: inherit;
}
.event-card .event-info p {
    color: #a0a0b0;
    font-size: 14px;
    font-family: inherit;
}
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.partner-item {
    display: flex;
    align-items: center;
    background: rgba(20, 15, 35, 0.7);
    border-radius: 16px;
    padding: 15px 25px;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    font-family: inherit;
}
.partner-item:hover {
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.1);
}
.partner-item img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}
.partner-item span {
    color: #c5c5d0;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
}
.deep-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.deep-card {
    background: rgba(20, 15, 35, 0.85);
    border-left: 3px solid #4ade80;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    font-family: inherit;
}
.deep-card:hover {
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
}
.deep-card h3 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 10px;
    font-family: inherit;
}
.deep-card p {
    color: #a0a0b0;
    font-size: 14px;
    font-family: inherit;
}
.news-section {
    background: rgba(10, 10, 20, 0.4);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.news-item {
    background: rgba(20, 15, 35, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    font-family: inherit;
}
.news-item:hover {
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 0 25px rgba(251, 146, 60, 0.08);
}
.news-item .date {
    color: #4ade80;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-family: inherit;
}
.news-item h3 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: inherit;
}
.news-item p {
    color: #a0a0b0;
    font-size: 14px;
    line-height: 1.7;
    font-family: inherit;
}
.news-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin-top: 15px;
}
.faq-section {
    background: rgba(10, 10, 20, 0.3);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(20, 15, 35, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 25px 30px;
    transition: all 0.3s;
    font-family: inherit;
}
.faq-item:hover {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.05);
}
.faq-item h3 {
    color: #fb923c;
    font-size: 16px;
    margin-bottom: 12px;
    font-family: inherit;
}
.faq-item p {
    color: #b0b0c0;
    font-size: 14px;
    line-height: 1.7;
    font-family: inherit;
}
.cta-section {
    background: radial-gradient(ellipse at center, rgba(45, 27, 105, 0.5), transparent);
    border-top: 1px solid rgba(251, 146, 60, 0.15);
    border-bottom: 1px solid rgba(251, 146, 60, 0.15);
    text-align: center;
}
.cta-section h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 20px;
    font-family: inherit;
}
.cta-section p {
    color: #a0a0b0;
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 16px;
    font-family: inherit;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-family: inherit;
}
.btn-orange {
    background: linear-gradient(90deg, #fb923c, #ff7f50);
    color: #0a0a0a;
    box-shadow: 0 0 25px rgba(251, 146, 60, 0.3);
}
.btn-orange:hover {
    box-shadow: 0 0 40px rgba(251, 146, 60, 0.5);
    transform: translateY(-2px);
}
.btn-green {
    background: linear-gradient(90deg, #4ade80, #22c55e);
    color: #0a0a0a;
    box-shadow: 0 0 25px rgba(74, 222, 128, 0.3);
}
.btn-green:hover {
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.5);
    transform: translateY(-2px);
}
.footer {
    background: rgba(5, 5, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 50px 40px 30px;
    font-family: inherit;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.footer-info h3 {
    color: #fb923c;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: inherit;
}
.footer-info p {
    color: #8a8a9a;
    font-size: 14px;
    margin-bottom: 8px;
    font-family: inherit;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #7a7a8a;
    font-size: 13px;
    font-family: inherit;
}
.footer-bottom a {
    color: #8a8a9a;
    text-decoration: none;
    margin: 0 5px;
    font-family: inherit;
}
.footer-bottom a:hover {
    color: #4ade80;
}
@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        height: auto;
        flex-direction: column;
        padding-top: 10px;
    }
    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 12px;
    }
    .main {
        padding-top: 100px;
    }
    .section {
        padding: 40px 20px;
    }
    .stats-grid,
    .advantages-grid,
    .testimonials-grid,
    .deep-content-grid,
    .news-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .story-content {
        flex-direction: column;
        text-align: center;
    }
    .story-content img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
    .hero h1 {
        font-size: 28px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}