        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
a { text-decoration: none !important;
}
        /* 顶部信息栏 - 继承原站深色风格 */
        .top-bar {
            background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            font-size: 13px;
            border-bottom: 2px solid #e1c469;
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 20px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .live-indicator {
            background: #e74c3c;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-weight: bold;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .top-bar-right a {
            color: #e1c469;
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s;
        }

        .top-bar-right a:hover {
            color: #fff;
        }

        /* 头部区域 */
        .main-header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section img {
            height: 50px;
        }

        .search-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-box {
            display: flex;
            border: 2px solid #e1c469;
            border-radius: 25px;
            overflow: hidden;
            width: 300px;
        }

        .search-box input {
            border: none;
            padding: 10px 15px;
            flex: 1;
            outline: none;
        }

        .search-btn {
            background: #e1c469;
            border: none;
            padding: 0 15px;
            cursor: pointer;
            color: #1a1a2e;
        }

        .user-actions {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .action-btn:first-child {
            border: 1px solid #e1c469;
            color: #e1c469;
        }

        .action-btn:last-child {
            background: #e1c469;
            color: #1a1a2e;
            font-weight: bold;
        }

        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(225, 196, 105, 0.3);
        }

        /* 导航栏 */
        .nav-bar {
            background: #fff;
            border-top: 1px solid #eee;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 30px;
            padding: 15px 0;
        }

        .nav-item a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-item a:hover {
            color: #e1c469;
        }

        .nav-item.active a {
            color: #e1c469;
            font-weight: bold;
        }

        .nav-item.active a::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #e1c469;
        }

        .hot-tags {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hot-label {
            color: #e74c3c;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tag {
            background: #f0f0f0;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tag:hover {
            background: #e1c469;
            color: #1a1a2e;
        }

        /* 实时比分滚动条 */
        .live-scores-bar {
            background: linear-gradient(90deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
        }

        .scores-wrapper {
            display: flex;
            gap: 30px;
            animation: scroll 30s linear infinite;
            white-space: nowrap;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .score-item {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: rgba(255,255,255,0.1);
            padding: 8px 20px;
            border-radius: 8px;
            border: 1px solid rgba(225, 196, 105, 0.3);
        }

        .score-league {
            color: #e1c469;
            font-weight: bold;
            font-size: 12px;
        }

        .score-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
        }

        .score-vs {
            color: #e1c469;
            font-size: 12px;
        }

        .score-result {
            color: #fff;
            font-weight: bold;
        }

        .score-live {
            background: #e74c3c;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 11px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* 主体内容区 */
        .main-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
        }

        /* 面包屑导航 */
        .breadcrumb {
            background: white;
            padding: 12px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            font-size: 14px;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: #e1c469;
        }

        .breadcrumb-separator {
            margin: 0 10px;
            color: #ccc;
        }

        .breadcrumb-current {
            color: #e1c469;
            font-weight: bold;
        }

        /* 推荐列表区 */
        .recommendation-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .recommendation-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid #e1c469;
        }

        .recommendation-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .match-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .match-league-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .league-badge {
            color: #ffffff;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 16px;
        }

        .match-time {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: #ccc;
        }

        .confidence-score {
            background: rgba(231, 76, 60, 0.9);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .match-body {
            padding: 25px;
        }

        .teams-showdown {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .team-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            flex: 1;
        }

        .team-logo {
            width: 60px;
            height: 60px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            border: 2px solid #e9ecef;
        }

        .team-name {
            font-weight: bold;
            font-size: 16px;
            color: #2c3e50;
        }

        .vs-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            padding: 0 30px;
        }

        .vs-text {
            font-size: 20px;
            font-weight: bold;
            color: #e1c469;
            background: #1a1a2e;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .odds-display {
            display: flex;
            gap: 10px;
            font-size: 13px;
        }

        .odd-item {
            background: #f8f9fa;
            padding: 5px 10px;
            border-radius: 4px;
            color: #666;
        }

        .odd-item.highlight {
            background: #e1c469;
            color: #1a1a2e;
            font-weight: bold;
        }

        .recommendation-section {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            border-left: 3px solid #27ae60;
        }

        .recommendation-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #27ae60;
            font-weight: bold;
            font-size: 16px;
        }

        .recommendation-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .rec-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .rec-label {
            font-size: 12px;
            color: #999;
            margin-bottom: 5px;
        }

        .rec-value {
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
        }

        .rec-value.recommended {
            color: #e74c3c;
            font-size: 20px;
        }

        .analysis-text {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #ddd;
            color: #666;
            font-size: 14px;
            line-height: 1.8;
        }

        .expert-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .expert-profile {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .expert-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .expert-details h4 {
            font-size: 14px;
            color: #333;
        }

        .expert-details p {
            font-size: 12px;
            color: #999;
        }

        .expert-stats {
            display: flex;
            gap: 15px;
            font-size: 12px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            color: #e74c3c;
            font-weight: bold;
            font-size: 16px;
        }

        .stat-label {
            color: #999;
        }

        .view-details-btn {
            background: linear-gradient(135deg, #e1c469 0%, #f4d03f 100%);
            color: #1a1a2e;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 15px;
            width: 100%;
        }

        .view-details-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(225, 196, 105, 0.4);
        }

        /* 侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .sidebar-title {
            font-size: 18px;
            font-weight: bold;
            color: #1a1a2e;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e1c469;
        }

        .expert-ranking-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .expert-ranking-item:last-child {
            border-bottom: none;
        }

        .rank-number {
            width: 30px;
            height: 30px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #666;
        }

        .rank-number.top {
            background: #e1c469;
            color: #1a1a2e;
        }

        .rank-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .rank-info {
            flex: 1;
        }

        .rank-name {
            font-weight: bold;
            color: #333;
            font-size: 14px;
        }

        .rank-record {
            font-size: 12px;
            color: #27ae60;
            margin-top: 2px;
        }

        .hot-matches-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hot-match-item {
            background: #f8f9fa;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .hot-match-item:hover {
            background: #fff;
            border-left-color: #e1c469;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .hot-match-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .hot-match-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
        }

        .prediction-tag {
            display: inline-block;
            background: #e1c469;
            color: #1a1a2e;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: bold;
            margin-top: 5px;
        }

        .history-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .history-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 6px;
            font-size: 13px;
        }

        .history-result {
            padding: 3px 10px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 12px;
        }

        .history-result.win {
            background: #d4edda;
            color: #155724;
        }

        .history-result.lose {
            background: #f8d7da;
            color: #721c24;
        }

        /* 底部 */
        .footer-section {
            margin-top: 50px;
            background: #1a1a2e;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #e1c469;
            color: #1a1a2e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: all 0.3s;
            z-index: 999;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background: #f4d03f;
        }

        /* 响应式设计 */
        @media (max-width: 968px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            
            .nav-list {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .hot-tags {
                display: none;
            }
            
            .teams-showdown {
                flex-direction: column;
                gap: 20px;
            }
            
            .vs-center {
                order: -1;
            }
            
            .recommendation-content {
                grid-template-columns: 1fr;
            }
        }
