 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0A0C15;
            color: #F1F5F9;
            line-height: 1.5;
        }
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #1E293B;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: #3B4B66;
            border-radius: 10px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0;
            border-bottom: 1px solid #1F2937;
            margin-bottom: 20px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            font-size: 32px;
            color: #10B981;
        }
        /* H1 标签样式，与原有 .logo-text 一致，保证视觉效果 */
        h1.logo-text {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #FFFFFF 0%, #A7F3D0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 0;
        }
        .logo-badge {
            background: #10B98120;
            border: 1px solid #10B98140;
            border-radius: 40px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 500;
            color: #10B981;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            font-weight: 500;
        }
        .nav-links a {
            transition: color 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #10B981;
        }
        .user-area {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .search-icon, .user-icon {
            font-size: 20px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .search-icon:hover, .user-icon:hover {
            color: #10B981;
        }
        /* 新增原创介绍区块 */
        .intro-text {
            background: #0F121E;
            border-radius: 28px;
            padding: 20px 28px;
            margin-bottom: 32px;
            border: 1px solid #262E40;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #CBD5E1;
        }
        .live-dashboard {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 28px;
            margin-bottom: 48px;
        }
        .primary-stream {
            background: #0F121E;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid #262E40;
            box-shadow: 0 20px 35px -15px rgba(0,0,0,0.5);
            position: relative;
        }
        .video-container {
            position: relative;
            aspect-ratio: 16 / 9;
            background-size: cover;
            background-position: center;
            transition: background-image 0.3s ease;
        }
        .video-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(2px);
        }
        .video-simulate {
            text-align: center;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            max-width: 90%;
            padding: 0 16px;
        }
        .video-simulate i {
            font-size: 64px;
            color: #10B981;
            margin-bottom: 16px;
            display: inline-block;
            filter: drop-shadow(0 0 8px #10B98180);
        }
        .video-simulate p {
            font-size: 14px;
            letter-spacing: 2px;
            word-break: break-word;
        }
        .match-info-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: linear-gradient(90deg, #000000bb, #00000066);
            backdrop-filter: blur(8px);
            border-radius: 50px;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            z-index: 2;
        }
        .match-teams {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 12px;
            width: 100%;
            flex: 2;
        }
        .match-teams .team:first-child {
            justify-self: start;
            text-align: left;
            max-width: 100%;
            overflow: hidden;
        }
        .match-teams .team:last-child {
            justify-self: end;
            text-align: right;
            max-width: 100%;
            overflow: hidden;
        }
        .team {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }
        .team-name {
            font-size: 1.1rem;
            font-weight: 700;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }
        .score {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: #000000aa;
            padding: 0 12px;
            border-radius: 40px;
            font-family: monospace;
            text-align: center;
            white-space: nowrap;
            flex-shrink: 0;
            min-width: 100px;
        }
        .match-stage {
            background: #10B98120;
            padding: 5px 14px;
            border-radius: 32px;
            font-size: 0.85rem;
            font-weight: 500;
            border-left: 3px solid #10B981;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .live-tag {
            background: #EF4444;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: bold;
            letter-spacing: 1px;
            animation: pulse 1.5s infinite;
            white-space: nowrap;
            flex-shrink: 0;
        }
        @keyframes pulse {
            0% { opacity: 0.7; box-shadow: 0 0 0 0 #EF444480; }
            70% { opacity: 1; box-shadow: 0 0 0 8px rgba(239,68,68,0); }
            100% { opacity: 0.7; }
        }
        /* 社交分享栏 */
        .share-bar {
            margin-top: 15px;
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .share-btn {
            background: #1E293B;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .share-btn:hover {
            background: #10B981;
            color: #0A0C15;
        }
        .live-list {
            background: #0F121E;
            border-radius: 28px;
            border: 1px solid #262E40;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .list-header {
            padding: 18px 20px;
            border-bottom: 1px solid #1F2937;
            font-weight: 700;
            font-size: 1.2rem;
            background: #0B0E17;
        }
        .list-header i {
            color: #10B981;
            margin-right: 8px;
        }
        .matches-scroll {
            flex: 1;
            overflow-y: auto;
            max-height: 540px;
        }
        .match-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid #1A1F2C;
            cursor: pointer;
            transition: all 0.2s ease;
            gap: 12px;
        }
        .match-card:hover {
            background: #171D2D;
            transform: translateX(3px);
        }
        .match-card.active {
            background: #10B98115;
            border-left: 4px solid #10B981;
        }
        .match-thumb {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: #1f2a3a;
        }
        .match-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-teams {
            flex: 2;
            min-width: 0;
        }
        .card-team-name {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .vs-small {
            font-size: 12px;
            color: #8B9BB0;
            flex-shrink: 0;
        }
        .card-score {
            font-weight: 800;
            font-size: 1.3rem;
            font-family: monospace;
            min-width: 65px;
            text-align: right;
            flex-shrink: 0;
        }
        .card-status {
            font-size: 12px;
            background: #10B98120;
            border-radius: 20px;
            padding: 3px 8px;
            margin-left: 12px;
            text-align: center;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .status-badge {
            color: #10B981;
            font-weight: 500;
        }
        .card-detail-link {
            font-size: 11px;
            background: #1E293B;
            border-radius: 20px;
            padding: 2px 8px;
            margin-left: 8px;
            cursor: pointer;
        }
        .fixtures-section {
            background: #0F121E;
            border-radius: 28px;
            border: 1px solid #262E40;
            padding: 20px 24px;
            margin-bottom: 40px;
        }
        .section-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 4px solid #10B981;
            padding-left: 16px;
        }
        .fixtures-table {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .fixture-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #0A0D16;
            padding: 12px 18px;
            border-radius: 18px;
            flex-wrap: wrap;
            transition: background 0.2s;
        }
        .fixture-row:hover {
            background: #131927;
        }
        .fixture-teams {
            font-weight: 600;
            display: flex;
            gap: 16px;
            align-items: baseline;
            flex-wrap: wrap;
        }
        .fixture-time {
            color: #9CA3AF;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-reminder {
            background: #1F2A44;
            border: none;
            color: #CBD5E1;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 12px;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-reminder:hover {
            background: #10B981;
            color: #0A0C15;
        }
        .comment-area {
            margin-top: 30px;
            background: #0A0D16;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .comment-area textarea {
            width: 100%;
            background: #1E293B;
            border: 1px solid #334155;
            border-radius: 16px;
            padding: 12px;
            color: #F1F5F9;
            font-family: inherit;
            resize: vertical;
        }
        .news-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 32px;
        }
        .section-card {
            background: #0F121E;
            border-radius: 28px;
            border: 1px solid #262E40;
            overflow: hidden;
        }
        .section-header {
            background: #0B0E17;
            padding: 16px 24px;
            border-bottom: 1px solid #1F2937;
            font-weight: 700;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-header i {
            color: #10B981;
        }
        .news-list, .highlight-list {
            padding: 0 12px 12px 12px;
        }
        .news-link, .highlight-link {
            display: flex;
            gap: 14px;
            padding: 14px 12px;
            border-bottom: 1px solid #1A1F2C;
            transition: background 0.2s;
            align-items: center;
            text-decoration: none;
            color: inherit;
        }
        .news-link:hover, .highlight-link:hover {
            background: #171D2D;
            border-radius: 16px;
        }
        .news-thumb, .highlight-thumb {
            width: 100px;
            height: 60px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: #1f2a3a;
        }
        .news-thumb img, .highlight-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-content, .highlight-info {
            flex: 1;
        }
        .news-title, .highlight-title {
            font-weight: 600;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 4px;
        }
        .news-meta, .highlight-meta {
            font-size: 0.7rem;
            color: #8B9BB0;
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .more-link {
            text-align: right;
            padding: 8px 18px 16px 0;
            font-size: 0.8rem;
            color: #10B981;
            cursor: pointer;
        }
        .footer {
            border-top: 1px solid #1F2937;
            padding: 32px 0;
            margin-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6C7A91;
        }
        .update-time {
            font-size: 11px;
            color: #5A6D85;
            margin-top: 8px;
        }
        @media (max-width: 1200px) {
            .live-dashboard { gap: 20px; }
            .container { padding: 0 16px; }
            .team-name { max-width: 140px; }
            .score { font-size: 1.8rem; min-width: 90px; }
        }
        @media (max-width: 1000px) {
            .live-dashboard { grid-template-columns: 1fr; gap: 24px; }
            .news-highlights { grid-template-columns: 1fr; }
            .navbar { flex-direction: column; gap: 16px; align-items: stretch; }
            .nav-links { justify-content: center; }
            .user-area { justify-content: center; }
            .match-info-overlay { flex-direction: column; align-items: flex-start; border-radius: 20px; }
            .score { font-size: 1.7rem; }
        }
        @media (max-width: 750px) {
            .team-name { max-width: 110px; font-size: 0.95rem; }
            .score { font-size: 1.5rem; min-width: 70px; }
            .matches-scroll { max-height: 400px; }
            .match-card { padding: 12px; }
        }
        @media (max-width: 480px) {
            .match-card { flex-wrap: wrap; }
            .card-teams { width: 100%; margin-bottom: 6px; }
            .news-thumb, .highlight-thumb { width: 70px; height: 50px; }
            .video-simulate i { font-size: 48px; }
            .team-name { max-width: 85px; font-size: 0.85rem; }
            .score { font-size: 1.3rem; min-width: 60px; }
        }
    </style>