* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}
body {
    background: linear-gradient(135deg, #1e293b 0%, #334155 40%, #64748b 100%);
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
a:hover { color: #f8fafc; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; border-bottom: 1px solid rgba(100, 116, 139, 0.25); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 32px; font-weight: 800; color: #f1f5f9; letter-spacing: 1.5px; text-transform: uppercase; }
.section-header h2 span { color: #dc2626; }
.section-header p { color: #94a3b8; margin-top: 10px; font-size: 16px; }
header {
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #b91c1c;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
.nav-links a:hover {
    color: #ffffff;
    background: rgba(185, 28, 28, 0.15);
    border-bottom-color: #dc2626;
}
.hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 45%, #334155 80%, #64748b 100%);
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/img/head.webp') no-repeat center center / contain;
    opacity: 0.06;
    pointer-events: none;
}
.hero h1 {
    font-size: 42px;
    font-weight: 900;
    color: #f8fafc;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(220, 38, 38, 0.3), 0 0 60px rgba(100, 116, 139, 0.2);
    margin-bottom: 24px;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .hero h1 { font-size: 26px; }
}
.geo-intro {
    max-width: 860px;
    margin: 0 auto 32px;
    padding: 24px 32px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #f8fafc;
    border: 1px solid #ef4444;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.45);
    color: #fff;
}
.btn-secondary {
    background: linear-gradient(135deg, #64748b 0%, #334155 100%);
    color: #f1f5f9;
    border: 1px solid #94a3b8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.stat-card {
    background: linear-gradient(145deg, #475569 0%, #1e293b 100%);
    border: 1px solid #64748b;
    border-radius: 14px;
    padding: 36px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-6px); }
.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #f1f5f9;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(220, 38, 38, 0.4);
}
.stat-label {
    margin-top: 12px;
    font-size: 15px;
    color: #94a3b8;
    letter-spacing: 2px;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.advantage-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.3s, border-color 0.3s;
}
.advantage-card:hover { transform: translateY(-6px); border-color: #b91c1c; }
.advantage-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.4));
}
.advantage-card h3 {
    color: #f1f5f9;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.advantage-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}
.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid #475569;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.story-content img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #64748b;
    flex-shrink: 0;
}
.story-content p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.9;
}
@media (max-width: 768px) {
    .story-content { flex-direction: column; }
    .story-content img { width: 100%; height: auto; }
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.event-card {
    background: linear-gradient(145deg, #334155 0%, #0f172a 100%);
    border: 1px solid #475569;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(185, 28, 28, 0.2); }
.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.event-card h3 {
    padding: 18px 20px 6px;
    color: #f1f5f9;
    font-size: 20px;
    font-weight: 700;
}
.event-card p {
    padding: 0 20px 20px;
    color: #94a3b8;
    font-size: 14px;
}
.stream-panel {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #dc2626;
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 40px rgba(185, 28, 28, 0.2);
}
.stream-panel img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: 1px solid #475569;
}
.stream-panel h3 {
    color: #f1f5f9;
    font-size: 24px;
}
.stream-panel p {
    color: #94a3b8;
    text-align: center;
    max-width: 600px;
}
.rankings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.ranking-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.ranking-card h3 {
    color: #dc2626;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #475569;
    padding-bottom: 12px;
    letter-spacing: 1px;
}
.ranking-card ul { list-style: none; }
.ranking-card li {
    color: #cbd5e1;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(100, 116, 139, 0.3);
    font-size: 15px;
}
.ranking-card li:last-child { border-bottom: none; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #475569;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
}
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 60px;
    color: #dc2626;
    font-family: Georgia, serif;
    opacity: 0.3;
}
.testimonial-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.testimonial-card span {
    color: #94a3b8;
    font-size: 13px;
    display: block;
    text-align: right;
}
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.news-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: border-color 0.3s, transform 0.3s;
}
.news-card:hover { border-color: #b91c1c; transform: translateX(6px); }
.news-card h3 {
    color: #f1f5f9;
    font-size: 22px;
    margin-bottom: 6px;
}
.news-card h3 a { color: #f1f5f9; }
.news-card h3 a:hover { color: #dc2626; }
.news-date {
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
    display: inline-block;
    background: rgba(185, 28, 28, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}
.news-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.news-card .read-more {
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
}
.news-card .read-more:hover { color: #f87171; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.faq-item {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #475569;
    border-radius: 12px;
    padding: 24px 28px;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: #64748b; }
.faq-item h3 {
    color: #f1f5f9;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}
.faq-item p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.8;
}
.cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    text-align: center;
    padding: 80px 0;
}
.cta h2 {
    font-size: 36px;
    font-weight: 900;
    color: #f8fafc;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.cta p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 32px;
}
.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
footer {
    background: #0f172a;
    border-top: 2px solid #b91c1c;
    padding: 48px 0 32px;
    margin-top: auto;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.footer-info p {
    color: #94a3b8;
    font-size: 14px;
}
.footer-links {
    margin-bottom: 20px;
}
.footer-links a {
    color: #cbd5e1;
    font-size: 15px;
    margin: 0 10px;
    padding: 4px 8px;
}
.footer-links a:hover { color: #dc2626; }
.copyright {
    color: #64748b;
    font-size: 13px;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
}