 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        body {
            background: #0a0c14;
            color: #f0f2f5;
        }

        /* 自定义滚动条 */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #1e1f2c;
        }
        ::-webkit-scrollbar-thumb {
            background: #e30b17;
            border-radius: 8px;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 头部全新设计 */
        header {
            background: linear-gradient(135deg, #0b0e16 0%, #121624 100%);
            backdrop-filter: blur(2px);
            border-bottom: 2px solid #e30b17;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 24px;
            flex-wrap: wrap;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo i {
            font-size: 38px;
            color: #e30b17;
            filter: drop-shadow(0 0 6px rgba(227,11,23,0.5));
        }
        .logo h2 {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #e30b17);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        nav ul {
            display: flex;
            gap: 28px;
            list-style: none;
            flex-wrap: wrap;
        }
        nav ul a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: 0.2s;
            cursor: pointer;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        nav ul a.active, nav ul a:hover {
            color: #e30b17;
            border-bottom-color: #e30b17;
        }

        /* 倒计时模块 - 全新视觉 */
        .countdown-module {
            background: radial-gradient(circle at 20% 30%, #1a1f2a, #0c0f17);
            margin: 32px 24px 40px;
            border-radius: 48px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 25px 35px -12px black;
            border: 1px solid rgba(227,11,23,0.3);
        }
        .tournament {
            font-size: 2rem;
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .tournament-name {
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(120deg, gold, #ff8c00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .countdown-module h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 8px 0;
        }
        .host {
            font-size: 1rem;
            background: rgba(227,11,23,0.2);
            display: inline-block;
            padding: 4px 20px;
            border-radius: 40px;
            margin-bottom: 18px;
        }
        .date-note {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 28px;
        }
        .timer-grid {
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .time-card {
            background: #00000066;
            backdrop-filter: blur(12px);
            padding: 18px 24px;
            border-radius: 32px;
            min-width: 100px;
            border-bottom: 3px solid #e30b17;
        }
        .time-number {
            font-size: 3.8rem;
            font-weight: 800;
            font-family: monospace;
            letter-spacing: 4px;
            line-height: 1;
        }
        .time-unit-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 500;
            margin-top: 8px;
            color: #bbb;
        }
        .subtle-message {
            font-size: 1rem;
            background: rgba(0,0,0,0.4);
            padding: 10px 24px;
            border-radius: 60px;
            display: inline-block;
            margin-top: 20px;
        }

        /* 通用 section 标题 */
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            border-left: 5px solid #e30b17;
            padding-left: 20px;
            margin: 48px 0 28px 0;
        }
        .section-title h2 {
            font-size: 1.8rem;
            font-weight: 700;
        }
        .view-all {
            color: #e30b17;
            cursor: pointer;
            font-weight: 500;
            transition: 0.2s;
        }
        .view-all:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        /* 新闻卡片网格 */
        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
        }
        .news-card {
            background: #141824;
            border-radius: 28px;
            overflow: hidden;
            transition: transform 0.25s, box-shadow 0.25s;
            cursor: pointer;
            border: 1px solid #282e3f;
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px #00000080;
            border-color: #e30b17;
        }
        .news-image {
            height: 200px;
            overflow: hidden;
        }
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.3s;
        }
        .news-card:hover .news-image img {
            transform: scale(1.05);
        }
        .news-content {
            padding: 20px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .news-meta {
            display: flex;
            gap: 20px;
            color: #8e94a8;
            font-size: 0.8rem;
        }

        /* 直播卡片 */
        .live-section {
            margin-top: 20px;
        }
        .live-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            gap: 28px;
        }
        .live-card {
            background: #11141f;
            border-radius: 32px;
            overflow: hidden;
            transition: all 0.2s;
            cursor: pointer;
            border: 1px solid #2a2f3f;
        }
        .live-card:hover {
            transform: translateY(-4px);
            border-color: #e30b17;
            box-shadow: 0 12px 24px rgba(0,0,0,0.4);
        }
        .live-header {
            background: linear-gradient(90deg, #1a1f2c, #0c0f17);
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #e30b1733;
        }
        .live-sport i, .live-sport span {
            font-weight: 600;
        }
        .live-badge {
            background: #e30b17;
            padding: 2px 12px;
            border-radius: 24px;
            font-size: 0.7rem;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .live-content {
            padding: 20px;
        }
        .teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        .team {
            text-align: center;
            flex: 1;
        }
        .team-logo img {
            width: 55px;
            height: 55px;
            object-fit: contain;
            background: white;
            border-radius: 50%;
            padding: 6px;
            background: #1e2436;
        }
        .team-name {
            font-weight: 600;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .vs {
            font-size: 1.4rem;
            font-weight: 800;
            background: #e30b17;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .match-info {
            text-align: center;
            background: #0b0e16;
            padding: 12px;
            border-radius: 24px;
            margin: 16px 0;
            font-size: 0.85rem;
        }
        .match-info div {
            margin: 4px 0;
        }
        .watch-now-btn .btn-watch {
            background: #e30b17;
            text-align: center;
            padding: 10px;
            border-radius: 40px;
            font-weight: bold;
            transition: 0.2s;
        }
        .watch-now-btn .btn-watch:hover {
            background: #b00a13;
        }

        /* 录像卡片 */
        .replay-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
        }
        .replay-card {
            background: #141824;
            border-radius: 28px;
            overflow: hidden;
            cursor: pointer;
            transition: 0.2s;
        }
        .replay-card:hover {
            transform: scale(0.98);
            background: #1a1f2e;
        }
        .replay-thumbnail {
            background: #2a2f40;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-size: 48px;
            color: #e30b17;
        }
        .replay-play-btn {
            position: absolute;
            background: rgba(0,0,0,0.6);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .replay-info {
            padding: 16px;
        }
        .replay-title {
            font-weight: 700;
            margin-bottom: 10px;
        }
        .replay-meta {
            display: flex;
            gap: 16px;
            font-size: 0.75rem;
            color: #9aa2b5;
        }

        /* 世界时钟 全新卡片条 */
        .world-clock-adaptive {
            background: #0f121c;
            border-radius: 40px;
            padding: 28px 24px;
            margin: 48px 0;
            border: 1px solid #2a2f40;
        }
        .adaptive-header {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .local-strip-adaptive {
            background: #06080f;
            border-radius: 60px;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            margin-bottom: 28px;
            font-weight: bold;
        }
        .live-time-adaptive {
            font-family: monospace;
            font-size: 1.8rem;
            letter-spacing: 2px;
        }
        .cities-grid-adaptive {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 20px;
        }
        .city-card-adaptive {
            background: #1a1e2c;
            border-radius: 32px;
            padding: 18px;
            text-align: center;
            transition: 0.1s;
        }
        .city-name-adaptive {
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        .time-adaptive {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: monospace;
            margin: 12px 0;
        }
        .date-adaptive {
            font-size: 0.7rem;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        /* 合作伙伴/关键词 */
        .links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .link-item {
            background: #1e2436;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            transition: 0.2s;
            cursor: pointer;
        }
        .link-item:hover {
            background: #e30b17;
            color: white;
        }

        footer {
            background: #080b10;
            margin-top: 60px;
            padding: 30px 0;
            text-align: center;
            font-size: 0.8rem;
            border-top: 1px solid #222;
        }
        .copyright a {
            color: #e30b17;
            text-decoration: none;
        }

        @media (max-width: 700px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            .time-number {
                font-size: 2.5rem;
            }
            .timer-grid {
                gap: 12px;
            }
        }
        .cursor_pointer {
            cursor: pointer;
        }
        .ad {
            cursor: pointer;
        }
