* {
    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, #fce7f3 0%, #f3e8ff 50%, #e0e7ff 100%);
    color: #2d2d3a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 导航 */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.12);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.08);
}

.nav-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a6a;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 24px;
    transition: all 0.35s ease;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.nav-links a:hover {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.25);
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.hero-section {
    max-width: 1200px;
    margin: 40px auto 32px;
    padding: 60px 40px 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.12);
}

.hero-section h1 {
    font-size: 46px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 16px;
    color: #4a4a6a;
    max-width: 880px;
    margin: 0 auto 28px;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-ideograph;
}

.hero-img {
    width: 100%;
    max-width: 860px;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.18);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* 通用区块 */
.section {
    max-width: 1200px;
    margin: 32px auto;
    padding: 48px 36px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.08);
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.section-sub {
    text-align: center;
    color: #6b6b80;
    margin-bottom: 36px;
    font-size: 15px;
}

/* 网格 */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(236, 72, 153, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.15);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
    display: block;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d2d3a;
}

.card p {
    color: #6b6b80;
    font-size: 14px;
    line-height: 1.7;
}

/* 统计 */
.stats-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.03);
}

.stat-num {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: #6b6b80;
    margin-top: 4px;
}

/* 优势 */
.adv-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(236, 72, 153, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.14);
}

.adv-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.adv-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d2d3a;
}

.adv-card p {
    color: #6b6b80;
    font-size: 14px;
    line-height: 1.7;
}

/* 新闻 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 24px 28px;
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #ec4899, #a855f7) 1;
    border-left-style: solid;
    border-left-width: 4px;
    border-image: none;
    border-left-color: #ec4899;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
}

.news-date {
    font-size: 13px;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d2d3a;
    transition: color 0.2s ease;
}

.news-title:hover {
    color: #a855f7;
}

.news-summary {
    color: #6b6b80;
    font-size: 14px;
    line-height: 1.8;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 26px 30px;
    border: 1px solid rgba(168, 85, 247, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d3a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question::before {
    content: "❓";
    font-size: 22px;
}

.faq-answer {
    color: #6b6b80;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 36px;
    position: relative;
}

.faq-answer::before {
    content: "💬";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

/* 用户口碑 */
.review-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(236, 72, 153, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    color: #4a4a6a;
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}

.review-author {
    color: #a855f7;
    font-weight: 700;
    font-size: 14px;
    text-align: right;
}

/* 下载 */
.download-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-img {
    flex: 0 0 300px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.15);
}

.download-info {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.download-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d2d3a;
}

.download-info p {
    color: #6b6b80;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.download-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(168, 85, 247, 0.35);
}

.btn-outline {
    background: transparent;
    color: #a855f7;
    border: 2px solid #a855f7;
}

.btn-outline:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-2px);
}

/* 页脚 */
.footer {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(236, 72, 153, 0.1);
    padding: 40px 24px 28px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #6b6b80;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.7;
}

.footer a {
    color: #a855f7;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #ec4899;
    text-decoration: underline;
}

/* 焦点赛事 */
.event-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(168, 85, 247, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.15);
}

.event-icon {
    font-size: 44px;
    margin-bottom: 16px;
    display: block;
}

.event-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d2d3a;
}

.event-card p {
    color: #6b6b80;
    font-size: 14px;
    line-height: 1.7;
}

/* 响应式 */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px 32px;
        margin: 20px 12px;
    }
    .hero-section h1 {
        font-size: 30px;
    }
    .section {
        padding: 32px 20px;
        margin: 20px 12px;
    }
    .download-wrap {
        flex-direction: column;
        align-items: center;
    }
    .download-img {
        flex: 0 0 auto;
        width: 100%;
    }
    .nav-links {
        gap: 8px;
        padding: 10px 12px;
    }
    .nav-links a {
        padding: 6px 12px;
        font-size: 13px;
    }
    .news-item {
        padding: 18px 16px;
    }
    .faq-item {
        padding: 20px 16px;
    }
}