* {
    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: #fdf2f8;
    color: #334155;
    line-height: 1.7;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(251, 113, 133, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(251, 113, 133, 0.15);
}

.nav-links {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.nav-links a {
    color: #1e293b;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    background: linear-gradient(135deg, #fb7185, #fda4af);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.35);
    transform: translateY(-1px);
}

.hero {
    background: linear-gradient(135deg, #fb7185 0%, #fda4af 40%, #ffe4e6 100%);
    padding: 70px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.6rem;
    color: #ffffff;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.18);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.geo-intro {
    background: rgba(255, 255, 255, 0.93);
    border-radius: 28px;
    padding: 30px 40px;
    box-shadow: 0 12px 40px rgba(251, 113, 133, 0.22);
    max-width: 860px;
    margin: 0 auto 36px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.geo-intro p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

.hero-img-wrap {
    display: inline-block;
    border-radius: 24px;
    box-shadow: 0 16px 50px rgba(30, 41, 59, 0.2);
    border: 4px solid #ffffff;
    max-width: 280px;
}

.hero-img-wrap img {
    display: block;
    width: 100%;
    border-radius: 20px;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 14px;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fb7185, #fda4af);
    border-radius: 4px;
    margin: 14px auto 0;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 44px;
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.stat-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(251, 113, 133, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(251, 113, 133, 0.22);
}

.stat-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fb7185;
    line-height: 1.2;
}

.stat-label {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 8px;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.adv-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 6px 30px rgba(251, 113, 133, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb7185, #fda4af);
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(251, 113, 133, 0.2);
}

.adv-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: inline-block;
}

.adv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.adv-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
}

.story-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(251, 113, 133, 0.1);
}

.story-img {
    flex: 1;
    min-width: 280px;
}

.story-img img {
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.story-content {
    flex: 1.2;
    min-width: 280px;
}

.story-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 18px;
    font-weight: 700;
}

.story-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.event-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(251, 113, 133, 0.1);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(251, 113, 133, 0.18);
}

.event-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.event-card-body {
    padding: 24px;
}

.event-tag {
    display: inline-block;
    background: #ffe4e6;
    color: #fb7185;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.event-card-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.event-card-body p {
    color: #64748b;
    font-size: 0.9rem;
}

.rank-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.rank-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 6px 30px rgba(251, 113, 133, 0.1);
}

.rank-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rank-list {
    list-style: none;
}

.rank-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.rank-list li:last-child {
    border-bottom: none;
}

.rank-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffe4e6;
    color: #fb7185;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.rank-name {
    flex: 1;
    font-weight: 500;
    color: #334155;
}

.rank-value {
    color: #fb7185;
    font-weight: 600;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testi-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 6px 30px rgba(251, 113, 133, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.testi-card:hover {
    transform: translateY(-4px);
}

.testi-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb7185, #fda4af);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testi-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.cta-wrap {
    background: linear-gradient(135deg, #fb7185, #fda4af);
    border-radius: 32px;
    padding: 56px 40px;
    text-align: center;
    box-shadow: 0 16px 50px rgba(251, 113, 133, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-wrap h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.cta-wrap p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #ffffff;
}

.cta-btn-primary {
    background: #ffffff;
    color: #fb7185;
}

.cta-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: #ffffff;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: center;
}

.app-info {
    padding: 20px;
}

.app-info h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 18px;
    font-weight: 700;
}

.app-info ul {
    list-style: none;
    margin-bottom: 28px;
}

.app-info ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.app-info ul li:last-child {
    border-bottom: none;
}

.app-info ul li::before {
    content: "✦";
    color: #fb7185;
    font-weight: 700;
}

.app-qr {
    text-align: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(251, 113, 133, 0.12);
}

.app-qr img {
    max-width: 240px;
    margin-bottom: 16px;
}

.app-qr p {
    color: #64748b;
    font-size: 0.9rem;
}

.news-section {
    background: #fdf2f8;
    padding: 64px 24px;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.news-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 6px 30px rgba(251, 113, 133, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(251, 113, 133, 0.16);
}

.news-date {
    display: inline-block;
    align-self: flex-start;
    background: #ffe4e6;
    color: #fb7185;
    font-size: 0.82rem;
    padding: 5px 16px;
    border-radius: 24px;
    margin-bottom: 14px;
    font-weight: 600;
}

.news-card h3 {
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 34px;
    margin-bottom: 18px;
    box-shadow: 0 4px 24px rgba(251, 113, 133, 0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 34px rgba(251, 113, 133, 0.15);
}

.faq-q {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.faq-q-icon {
    background: linear-gradient(135deg, #fb7185, #fda4af);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-q h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
}

.faq-a {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.faq-a-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-a p {
    color: #475569;
    line-height: 1.8;
    font-size: 0.95rem;
}

.site-footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 60px 24px 24px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-block p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-block a {
    color: #94a3b8;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #fb7185;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
    font-size: 0.84rem;
    color: #64748b;
}

.footer-bottom a {
    color: #94a3b8;
    margin: 0 6px;
}

.footer-bottom a:hover {
    color: #fb7185;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .geo-intro {
        padding: 22px 20px;
    }

    .section {
        padding: 44px 16px;
    }

    .story-wrap {
        padding: 24px;
    }

    .cta-wrap {
        padding: 36px 20px;
    }

    .nav-links a {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}