* {
    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, #fbcfe8 0%, #f3e8ff 50%, #fdfcf7 100%);
    background-attachment: fixed;
    color: #333;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 60%),
                radial-gradient(circle at 85% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 24px rgba(214, 158, 190, 0.15);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
    border-radius: 8px;
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #e65f9e, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e65f9e, #8b5cf6);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #e65f9e;
}

.nav-links a:hover::after {
    width: 100%;
}

main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 72px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #d44d8e, #7c5cd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 15px;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* Hero */
#hero {
    padding: 96px 0 72px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    overflow: hidden;
}

.hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 320px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #d44d8e, #6d5cef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 17px;
    color: #555;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f472b6, #8b5cf6);
    color: #fff;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.35);
}

.hero-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(214, 158, 190, 0.25);
    max-height: 380px;
    object-fit: cover;
}

/* Geo intro */
#geo-intro {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.35);
}

.geo-box {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px 48px;
    box-shadow: 0 8px 32px rgba(214, 158, 190, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.geo-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    text-align: left;
    text-indent: 2em;
}

/* Featured events */
#featured-events {
    background: rgba(255, 255, 255, 0.2);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.event-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(214, 158, 190, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(214, 158, 190, 0.2);
}

.event-card img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 16px;
}

.event-card .league {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.event-card .match {
    font-size: 20px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.event-card .score {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #e65f9e, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0;
}

.event-card .status {
    display: inline-block;
    background: rgba(236, 72, 153, 0.1);
    color: #e65f9e;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Data stats */
#data-stats {
    background: linear-gradient(135deg, rgba(251, 207, 232, 0.4), rgba(243, 232, 255, 0.4));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 36px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(214, 158, 190, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: scale(1.03);
}

.stat-item .num {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #e65f9e, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-item .label {
    font-size: 14px;
    color: #777;
    margin-top: 8px;
}

/* Core advantages */
#core-advantages {
    background: rgba(255, 255, 255, 0.15);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.adv-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 8px 24px rgba(214, 158, 190, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s;
    text-align: center;
}

.adv-card:hover {
    transform: translateY(-4px);
}

.adv-card .icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.adv-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.adv-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Brand story */
#brand-story {
    background: rgba(255, 255, 255, 0.2);
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-img {
    flex: 1;
    min-width: 280px;
}

.brand-img img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(214, 158, 190, 0.2);
}

.brand-text {
    flex: 1;
    min-width: 280px;
}

.brand-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 16px;
}

.brand-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Rankings */
#rankings {
    background: rgba(255, 255, 255, 0.1);
}

.rank-table {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(214, 158, 190, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.rank-table table {
    width: 100%;
    border-collapse: collapse;
}

.rank-table th {
    background: linear-gradient(135deg, #f472b6, #a78bfa);
    color: #fff;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.rank-table td {
    padding: 12px 14px;
    text-align: center;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.rank-table tr:last-child td {
    border-bottom: none;
}

.rank-table tr:hover td {
    background: rgba(251, 207, 232, 0.2);
}

.rank-table .team-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.rank-table .team-cell img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.rank-table .rank-num {
    font-weight: 700;
    color: #e65f9e;
    width: 30px;
    display: inline-block;
}

/* News */
#news-list {
    background: rgba(255, 255, 255, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(214, 158, 190, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(214, 158, 190, 0.2);
}

.news-tag {
    align-self: flex-start;
    background: linear-gradient(135deg, #f472b6, #a78bfa);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    flex: 1;
}

/* FAQ */
#faq {
    background: rgba(255, 255, 255, 0.15);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(214, 158, 190, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.faq-item details {
    display: block;
}

.faq-item summary {
    font-size: 17px;
    font-weight: 600;
    color: #3a3a3a;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 36px;
    line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f472b6, #a78bfa);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item .answer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Download */
#download {
    background: linear-gradient(135deg, rgba(251, 207, 232, 0.5), rgba(243, 232, 255, 0.5));
}

.download-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-img {
    flex: 1;
    min-width: 260px;
    max-width: 420px;
}

.download-img img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(214, 158, 190, 0.25);
}

.download-text {
    flex: 1;
    min-width: 280px;
    max-width: 480px;
}

.download-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #d44d8e, #7c5cd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.download-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f472b6, #8b5cf6);
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.2);
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    padding: 48px 0 24px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: #d44d8e;
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.footer-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e65f9e;
}

.footer-copy {
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.footer-copy a {
    color: #aaa;
    text-decoration: none;
    margin: 0 6px;
}

.footer-copy a:hover {
    color: #e65f9e;
}

.emoji-left,
.emoji-right {
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 16px 20px;
        gap: 12px;
    }

    .nav-links {
        gap: 16px;
        justify-content: center;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-wrap {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .geo-box {
        padding: 24px 20px;
    }

    .brand-wrap {
        flex-direction: column;
    }

    .download-wrap {
        flex-direction: column;
        text-align: center;
    }

    .download-btn-group {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 48px 0;
    }
}