* {
    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, #0f0518 0%, #1a0b2e 30%, #2e1065 70%, #1a0b2e 100%);
    background-attachment: fixed;
    color: #e9d5ff;
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: #f0abfc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 5, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 171, 252, 0.2);
    padding: 0.8rem 2rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-links a:hover {
    background: rgba(240, 171, 252, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(240, 171, 252, 0.3);
}

.nav-links a:first-child {
    background: linear-gradient(135deg, #7c3aed, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* 通用容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.3) 0%, transparent 70%),
                radial-gradient(ellipse at top right, rgba(240, 171, 252, 0.2), transparent 60%),
                linear-gradient(180deg, #0f0518 0%, #1a0b2e 50%, #2e1065 100%);
    padding: 6rem 2rem 4rem;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #c084fc, #f0abfc, #e9d5ff, #c084fc);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.hero p {
    font-size: 1.2rem;
    color: #d8b4fe;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    margin: 0.5rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.6);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #f0abfc;
    color: #f0abfc;
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(240, 171, 252, 0.1);
    color: #f0abfc;
}

/* 通用section */
.section {
    padding: 5rem 2rem;
}

.section-alt {
    background: linear-gradient(180deg, transparent, rgba(46, 16, 101, 0.4), transparent);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #c084fc, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #f0abfc);
    margin: 0.5rem auto;
    border-radius: 2px;
}

/* GEO介绍 */
.geo-intro {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(46, 16, 101, 0.3), transparent);
}

.geo-intro .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.geo-intro .geo-text {
    flex: 1;
    min-width: 300px;
}

.geo-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #d8b4fe;
}

.geo-intro img {
    width: 360px;
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
    border: 1px solid rgba(240, 171, 252, 0.2);
}

/* 数据统计 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(240, 171, 252, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: #a78bfa;
    margin-top: 0.5rem;
}

/* 核心优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

.adv-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(240, 171, 252, 0.05));
    border: 1px solid rgba(240, 171, 252, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    position: offset;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(240, 171, 252, 0.1), transparent);
}

.adv-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 60px rgba(124, 58, 237, 0.3);
    border-color: rgba(240, 171, 252, 0.4);
}

.adv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.adv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #e9d5ff;
}

.adv-card p {
    font-size: 0.95rem;
    color: #a78bfa;
    line-height: 1.7;
}

/* 品牌故事 */
.story {
    padding: 5rem 2rem;
}

.story .container {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text p {
    color: #d8b4fe;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.story-text .highlight {
    color: #f0abfc;
    font-weight: 600;
}

.story img {
    width: 420px;
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(240, 171, 252, 0.2);
}

/* 焦点赛事 */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

.event-card {
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(46, 16, 101, 0.3);
    border: 1px solid rgba(240, 171, 252, 0.15);
    transition: all 0.4s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-info {
    padding: 1.5rem;
}

.event-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #e9d5ff;
}

.event-info p {
    font-size: 0.9rem;
    color: #a78bfa;
}

.event-tag {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    padding: 0.2rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* 新闻列表 */
.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: rgba(46, 16, 101, 0.3);
    border: 1px solid rgba(240, 171, 252, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(46, 16, 101, 0.5);
    border-color: rgba(240, 171, 252, 0.3);
    transform: translateX(5px);
}

.news-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.news-content h3 a {
    color: #e9d5ff;
}

.news-content h3 a:hover {
    color: #f0abfc;
}

.news-date {
    font-size: 0.85rem;
    color: #a78bfa;
    display: block;
    margin-bottom: 0.5rem;
}

.news-content p {
    font-size: 0.9rem;
    color: #b8a6d9;
    line-height: 1.7;
}

.news-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #f0abfc;
}

/* 服务覆盖 */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.coverage-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(240, 171, 252, 0.1);
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: scale(1.05);
    background: rgba(124, 58, 237, 0.15);
}

.coverage-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.coverage-card h4 {
    font-size: 1rem;
    color: #e9d5ff;
}

.coverage-card p {
    font-size: 0.85rem;
    color: #a78bfa;
}

/* 用户口碑 */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(240, 171, 252, 0.05));
    border: 1px solid rgba(240, 171, 252, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '❝';
    font-size: 4rem;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    color: rgba(240, 171, 252, 0.2);
    font-family: "Segoe UI", Arial, sans-serif;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #d8b4fe;
    font-style: italic;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.testimonial-card .name {
    font-weight: 600;
    color: #f0abfc;
    font-size: 0.9rem;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(46, 16, 101, 0.3);
    border: 1px solid rgba(240, 171, 252, 0.1);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #e9d5ff;
    cursor: default;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: #f0abfc;
}

.faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: #b8a6d9;
    font-size: 0.95rem;
    line-height: 1.8;
    border-top: 1px solid rgba(240, 171, 252, 0.1);
}

/* CTA */
.cta {
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.3), transparent),
                linear-gradient(135deg, #1a0b2e, #2e1065);
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f0abfc;
}

.cta p {
    font-size: 1.1rem;
    color: #d8b4fe;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 页脚 */
.footer {
    background: #0f0518;
    border-top: 1px solid rgba(240, 171, 252, 0.2);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #c084fc, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-info {
    color: #a78bfa;
    font-size: 0.9rem;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.footer-links a {
    color: #a78bfa;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f0abfc;
    background: rgba(240, 171, 252, 0.1);
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(240, 171, 252, 0.1);
    font-size: 0.85rem;
    color: #7c6a9e;
}