* {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #2e1065 0%, #7c3aed 50%, #6d28d9 100%);
    color: #f5f3ff;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}
nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(46, 16, 101, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(240, 171, 252, 0.18);
    padding: 0 32px;
}
.nav-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}
.nav-links a {
    display: inline-block;
    padding: 16px 20px;
    color: #f5f3ff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    background: rgba(240, 171, 252, 0.15);
    color: #f0abfc;
}
.hero {
    position: relative;
    text-align: center;
    padding: 70px 24px 50px;
    background: radial-gradient(circle at 30% 20%, rgba(240, 171, 252, 0.15), transparent 50%), radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.3), transparent 60%);
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    text-shadow: 0 0 40px rgba(240, 171, 252, 0.5);
    line-height: 1.3;
}
.hero p {
    font-size: 18px;
    color: #e9d5ff;
    max-width: 800px;
    margin: 0 auto;
}
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
    background: linear-gradient(90deg, #f0abfc, #ffffff, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    text-align: center;
    color: #d8b4fe;
    margin-bottom: 40px;
    font-size: 16px;
}
.glow-card {
    background: linear-gradient(145deg, rgba(124,58,237,0.18), rgba(46,16,101,0.35));
    border: 1px solid rgba(240, 171, 252, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    padding: 28px 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glow-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(240,171,252,0.08) 20%, transparent 40%, rgba(124,58,237,0.1) 60%, transparent 80%);
    animation: rotate 12s linear infinite;
    pointer-events: none;
}
.glow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 30px rgba(240, 171, 252, 0.15);
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.grid {
    display: grid;
    gap: 28px;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.card-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(240, 171, 252, 0.1);
    padding: 8px;
}
.card-img-lg {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.card-text {
    font-size: 14px;
    color: #d8b4fe;
    line-height: 1.6;
}
.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #f0abfc;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f0abfc, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 15px;
    color: #d8b4fe;
}
.tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    background: rgba(240, 171, 252, 0.2);
    color: #f0abfc;
    border: 1px solid rgba(240, 171, 252, 0.3);
    margin-right: 8px;
}
.news-list-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px;
    margin-bottom: 20px;
}
.news-date {
    font-size: 13px;
    color: #c4b5fd;
    font-weight: 600;
}
.news-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.news-summary {
    font-size: 14px;
    color: #d8b4fe;
    line-height: 1.7;
}
.news-link {
    color: #f0abfc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}
.news-link:hover {
    opacity: 0.75;
}
.faq-item {
    margin-bottom: 18px;
    padding: 24px 28px;
}
.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-question::after {
    content: '＋';
    color: #f0abfc;
    font-size: 20px;
}
.faq-answer {
    font-size: 14px;
    color: #d8b4fe;
    line-height: 1.75;
}
.footer {
    background: rgba(46, 16, 101, 0.85);
    border-top: 1px solid rgba(240, 171, 252, 0.15);
    padding: 40px 24px 24px;
    text-align: center;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-info p {
    font-size: 14px;
    color: #c4b5fd;
    margin-bottom: 8px;
}
.footer-links {
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer-links a {
    color: #f0abfc;
    text-decoration: none;
    font-size: 14px;
    padding: 0 12px;
    transition: opacity 0.3s;
}
.footer-links a:hover {
    opacity: 0.75;
}
.footer-copy {
    font-size: 13px;
    color: #a78bfa;
    margin-top: 16px;
    border-top: 1px solid rgba(240, 171, 252, 0.1);
    padding-top: 20px;
}
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, #f0abfc, #7c3aed);
    color: #2e1065;
}
.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(240, 171, 252, 0.4);
    transform: translateY(-3px);
}
.btn-secondary {
    background: rgba(240, 171, 252, 0.1);
    color: #f0abfc;
    border: 1px solid rgba(240, 171, 252, 0.4);
}
.btn-secondary:hover {
    background: rgba(240, 171, 252, 0.2);
    transform: translateY(-3px);
}
.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.3), rgba(46, 16, 101, 0.4));
    border-radius: 32px;
    border: 1px solid rgba(240, 171, 252, 0.25);
    position: relative;
    overflow: hidden;
}
.cta-box h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}
.cta-box p {
    font-size: 16px;
    color: #d8b4fe;
    margin-bottom: 28px;
}
.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #f0abfc, #7c3aed);
}
.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px 24px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f0abfc;
    box-shadow: 0 0 20px #f0abfc;
}
.timeline-period {
    font-size: 13px;
    color: #f0abfc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.timeline-desc {
    font-size: 14px;
    color: #d8b4fe;
    line-height: 1.65;
}
.live-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 8px;
    border-bottom: 1px solid rgba(240, 171, 252, 0.08);
}
.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f43f5e;
    animation: pulse 1.2s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.live-info {
    flex: 1;
    font-size: 15px;
    color: #f5f3ff;
}
.live-status {
    font-size: 13px;
    color: #f0abfc;
}
@media (max-width: 900px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 32px;
    }
    .nav-links a {
        padding: 12px 14px;
        font-size: 14px;
    }
    .stat-number {
        font-size: 34px;
    }
}