* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: linear-gradient(135deg, #fbcfe8 0%, #f3e8ff 40%, #fdf2f8 100%);
            color: #4a3f5c;
            line-height: 1.7;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航栏 */
        .main-nav {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.8);
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 24px rgba(168, 85, 142, 0.10);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .nav-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a3f5c;
            font-weight: 600;
            font-size: 15px;
            padding: 8px 16px;
            border-radius: 40px;
            background: linear-gradient(135deg, #fff5f9, #f3e8ff);
            border: 1px solid rgba(244, 179, 210, 0.5);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .nav-links a:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 6px 20px rgba(236, 72, 153, 0.15);
            background: linear-gradient(135deg, #fce7f3, #ede9fe);
        }

        /* 按钮 */
        .btn-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f472b6, #c084fc);
            color: #ffffff;
            box-shadow: 0 6px 20px rgba(244, 114, 182, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(244, 114, 182, 0.45);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.75);
            color: #a855a8;
            border: 2px solid #f0abfc;
        }

        .btn-outline:hover {
            background: #fdf2f8;
            transform: translateY(-3px);
        }

        /* HERO */
        .hero-section {
            padding: 72px 20px 56px;
            position: relative;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-text h1 {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.25;
            background: linear-gradient(120deg, #a21caf, #db2777, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .hero-text p {
            font-size: 17px;
            color: #63537a;
            margin-bottom: 12px;
        }

        .hero-image {
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 32px;
            box-shadow: 0 20px 40px rgba(168, 85, 142, 0.25);
            border: 4px solid rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* 通用section */
        .section-padding {
            padding: 72px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 48px;
            background: linear-gradient(120deg, #a21caf, #db2777);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 16px;
            color: #7c6a8a;
            margin-top: -32px;
            margin-bottom: 48px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 36px 28px;
            box-shadow: 0 8px 32px rgba(180, 80, 155, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.7);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(180, 80, 155, 0.15);
        }

        .card-icon {
            font-size: 48px;
            margin-bottom: 16px;
            display: block;
        }

        .card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #4a3f5c;
            margin-bottom: 12px;
        }

        .card p {
            font-size: 15px;
            color: #6b5d7a;
            line-height: 1.6;
        }

        /* 数据统计 */
        .stats-section {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.12), rgba(192, 132, 252, 0.12));
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.75);
            border-radius: 24px;
            padding: 36px 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }

        .stat-number {
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(120deg, #c026d3, #db2777);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 15px;
            color: #6b5d7a;
            margin-top: 8px;
        }

        /* 品牌故事 */
        .story-section {
            background: rgba(255, 255, 255, 0.45);
        }

        .story-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .story-wrapper img {
            max-width: 100%;
            border-radius: 28px;
            box-shadow: 0 16px 40px rgba(120, 80, 150, 0.2);
        }

        .story-text h3 {
            font-size: 26px;
            margin-bottom: 16px;
            font-weight: 700;
            color: #4a3f5c;
        }

        .story-text p {
            font-size: 16px;
            color: #6b5d7a;
            line-height: 1.8;
            margin-bottom: 14px;
        }

        @media (max-width: 900px) {
            .story-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* 焦点赛事 */
        .events-section {
            background: linear-gradient(135deg, rgba(251, 207, 232, 0.3), rgba(243, 232, 255, 0.3));
        }

        .event-card {
            background: rgba(255, 255, 255, 0.78);
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .event-card:hover {
            transform: scale(1.02);
        }

        .event-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 16px;
        }

        .event-card h3 {
            font-size: 18px;
            font-weight: 700;
        }

        .event-card p {
            font-size: 14px;
            color: #6b5d7a;
        }

        .event-tag {
            display: inline-block;
            background: linear-gradient(135deg, #fbcfe8, #f3e8ff);
            color: #9d2f6e;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 40px;
        }

        /* 排行 */
        .rank-list {
            max-width: 720px;
            margin: 0 auto;
        }

        .rank-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(255, 255, 255, 0.75);
            border-radius: 20px;
            padding: 18px 28px;
            margin-bottom: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }

        .rank-num {
            font-size: 24px;
            font-weight: 800;
            color: #c026d3;
            width: 48px;
            text-align: center;
        }

        .rank-name {
            font-weight: 600;
            flex: 1;
        }

        .rank-score {
            color: #a855a8;
            font-weight: 700;
        }

        /* 口碑 */
        .testimonials-section {
            background: rgba(255, 255, 255, 0.4);
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 32px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(240, 171, 252, 0.3);
        }

        .testimonial-card .quote-icon {
            font-size: 36px;
            color: #f0abfc;
            line-height: 1;
        }

        .testimonial-card p {
            font-size: 15px;
            color: #5d4e6e;
            font-style: italic;
            margin: 16px 0;
        }

        .testimonial-author {
            font-weight: 700;
            color: #a855a8;
        }

        /* 下载 */
        .download-section {
            background: linear-gradient(135deg, #fbcfe8, #f3e8ff);
        }

        .download-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: center;
        }

        .download-wrapper img {
            max-width: 100%;
            border-radius: 28px;
        }

        .download-text h3 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #4a3f5c;
        }

        .download-text p {
            font-size: 16px;
            color: #6b5d7a;
            margin-bottom: 20px;
        }

        @media (max-width: 900px) {
            .download-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* 新闻 */
        .news-section {
            background: rgba(255, 255, 255, 0.3);
        }

        .news-list {
            max-width: 1000px;
            margin: 0 auto;
        }

        .news-item {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 28px 32px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border-left: 4px solid #f472b6;
            transition: all 0.3s ease;
        }

        .news-item:hover {
            transform: translateX(6px);
            box-shadow: 0 8px 32px rgba(244, 114, 182, 0.15);
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 14px;
            color: #a855a8;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .news-tag {
            background: linear-gradient(135deg, #fbcfe8, #f3e8ff);
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 13px;
            color: #9d2f6e;
        }

        .news-date {
            color: #7c6a8a;
            font-weight: 500;
        }

        .news-title {
            font-size: 20px;
            font-weight: 700;
            color: #3f2e4e;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        .news-title:hover {
            color: #c026d3;
        }

        .news-summary {
            font-size: 15px;
            color: #6b5d7a;
            line-height: 1.7;
        }

        .news-more {
            display: inline-block;
            margin-top: 12px;
            color: #c026d3;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
        }

        /* FAQ */
        .faq-section {
            background: linear-gradient(135deg, rgba(251, 207, 232, 0.25), rgba(243, 232, 255, 0.25));
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.82);
            border-radius: 20px;
            padding: 28px 32px;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .faq-item h3 {
            font-size: 18px;
            font-weight: 700;
            color: #4a3f5c;
            margin-bottom: 12px;
            position: relative;
            padding-left: 24px;
        }

        .faq-item h3::before {
            content: "🌸";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 16px;
        }

        .faq-item p {
            font-size: 15px;
            color: #6b5d7a;
            line-height: 1.75;
        }

        /* 回放 */
        .replay-section {
            background: rgba(255, 255, 255, 0.4);
        }

        .replay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .replay-card {
            background: rgba(255, 255, 255, 0.75);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .replay-card .replay-tag {
            font-size: 13px;
            color: #c026d3;
            font-weight: 600;
        }

        .replay-card h4 {
            font-size: 17px;
            font-weight: 700;
        }

        .replay-card p {
            font-size: 14px;
            color: #6b5d7a;
        }

        /* 页脚 */
        .footer {
            background: rgba(45, 20, 50, 0.95);
            color: #e4cfdd;
            padding: 48px 20px 24px;
            margin-top: 40px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
        }

        .footer h4 {
            font-size: 18px;
            font-weight: 700;
            color: #fbcfe8;
            margin-bottom: 16px;
        }

        .footer p,
        .footer li {
            font-size: 14px;
            color: #d3bed6;
            line-height: 1.8;
            list-style: none;
        }

        .footer a {
            color: #f0abfc;
            text-decoration: none;
        }

        .footer a:hover {
            color: #f9a8d4;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #b09ab2;
        }

        .footer-bottom a {
            margin: 0 8px;
        }