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

        /* ǿ�ƹ̶������Ű沼�� - ������Ļ�ߴ�Ӱ�� */
        html {
            min-width: 1400px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            background: #f0f2f5;
            color: #1a1a1a;
            line-height: 1.6;
            min-width: 1400px;
            overflow-x: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ========== ͷ����ʽ������+��ɫ�� ========== */
        .top-bar {
            background: linear-gradient(90deg, #0d1f3c 0%, #1a3a5c 100%);
            padding: 8px 0;
            border-bottom: 2px solid #c9a227;
        }

        .top-bar-content {
            width: 1400px;
            min-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #a8c4e0;
        }

        .top-bar-left { display: flex; gap: 20px; }
        .live-indicator { color: #ff4444; font-weight: bold; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
        .top-bar-right { display: flex; gap: 15px; }
        .top-bar-right a { color: #c9a227; text-decoration: none; transition: color 0.3s; }
        .top-bar-right a:hover { color: #ffd700; }

        .main-header {
            background: linear-gradient(135deg, #0d2137 0%, #1a4d8c 50%, #2a6db8 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .main-header::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.1) 50%, transparent 100%),
                repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
            pointer-events: none;
        }

        .header-content {
            width: 1400px;
            min-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .logo-section { display: flex; align-items: center; gap: 15px; }

        .search-section { display: flex; align-items: center; gap: 20px; }
        .search-box { position: relative; }
        .search-box input {
            width: 300px; padding: 12px 45px 12px 20px;
            border: 2px solid #c9a227; border-radius: 30px;
            background: rgba(13, 31, 60, 0.8); color: white;
            font-size: 14px; outline: none; transition: all 0.3s;
        }
        .search-box input::placeholder { color: #7a9bc4; }
        .search-box input:focus { background: rgba(13, 31, 60, 1); box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
        .search-btn {
            position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
            width: 35px; height: 35px;
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            border: none; border-radius: 50%; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: transform 0.3s;
        }
        .search-btn:hover { transform: translateY(-50%) scale(1.1); }
        .search-btn svg { width: 18px; height: 18px; fill: white; }

        .user-actions { display: flex; gap: 15px; }
        .action-btn {
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.1) 100%);
            border: 1px solid #c9a227; border-radius: 25px;
            color: #c9a227; font-size: 14px; font-weight: 600;
            cursor: pointer; transition: all 0.3s;
        }
        .action-btn:hover {
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137; transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
        }

        /* ������ */
        .nav-bar {
            background: linear-gradient(90deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
            border-top: 1px solid rgba(201, 162, 39, 0.3);
            border-bottom: 3px solid #c9a227;
            position: sticky; top: 0; z-index: 100;
        }
        .nav-content { width: 1400px; min-width: 1400px; margin: 0 auto; padding: 0 20px; }
        .nav-list { display: flex; list-style: none; gap: 0; }
        .nav-item a {
            display: block; padding: 18px 30px;
            color: #a8c4e0; text-decoration: none;
            font-size: 16px; font-weight: 600;
            transition: all 0.3s; position: relative;
            text-transform: uppercase; letter-spacing: 1px;
        }
        .nav-item a::after {
            content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 0; height: 3px;
            background: linear-gradient(90deg, transparent, #c9a227, transparent);
            transition: width 0.3s;
        }
        .nav-item a:hover, .nav-item.active a { color: #c9a227; background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.1) 100%); }
        .nav-item a:hover::after, .nav-item.active a::after { width: 80%; }

        .hot-tags { display: flex; align-items: center; gap: 10px; margin-left: auto; padding: 0 20px; }
        .hot-label { color: #ff4444; font-size: 12px; font-weight: bold; }
        .tag {
            padding: 5px 12px; background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3); border-radius: 15px;
            color: #c9a227; font-size: 12px; cursor: pointer; transition: all 0.3s;
        }
        .tag:hover { background: #c9a227; color: #0d2137; }

        /* ʵʱ�ȷ��� */
        .live-scores-bar {
            background: linear-gradient(90deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
            border-top: 1px solid rgba(201, 162, 39, 0.3);
            border-bottom: 1px solid rgba(201, 162, 39, 0.3);
            padding: 15px 0;
            overflow: hidden;
        }

        .scores-wrapper {
            width: 1400px;
            min-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
            animation: scrollScores 20s linear infinite;
        }

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

        .score-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px 20px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 10px;
            white-space: nowrap;
        }

        .score-league { color: #c9a227; font-size: 12px; font-weight: 700; }
        .score-teams { display: flex; align-items: center; gap: 10px; color: white; font-weight: 600; }
        .score-vs { color: #7a9bc4; font-size: 12px; }
        .score-result { color: #4da6ff; font-weight: 700; font-size: 18px; }
        .score-live { color: #ff4444; font-size: 11px; animation: pulse 1s infinite; }

        /* ========== �������� ========== */
        .main-container {
            width: 1400px;
            min-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* ���м���� */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            font-size: 13px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #1a4d8c;
            transition: all 0.3s;
            padding: 4px 8px;
            border-radius: 4px;
        }
        .breadcrumb a:hover {
            color: #c9a227;
            background: rgba(201, 162, 39, 0.1);
        }
        .breadcrumb-separator {
            color: #adb5bd;
            font-size: 12px;
        }
        .breadcrumb-current {
            color: #495057;
            font-weight: 600;
            padding: 4px 8px;
            background: #e9ecef;
            border-radius: 4px;
        }

        /* ҳ����� */
        .page-header {
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            border-radius: 12px;
            padding: 25px 30px;
            margin-bottom: 25px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            top: -50%; right: -10%;
            width: 250px; height: 250px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 50%;
        }
        .page-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .page-title i {
            font-size: 24px;
            color: #c9a227;
        }
        .page-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.85);
            position: relative;
            z-index: 1;
        }

        /* ������������ */
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 20px;
            width: 100%;
        }

        /* ��������� */
        .main-content {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            min-width: 0;
            overflow: hidden;
        }

        /* ר�ҿ�Ƭ������ */
        .expert-slider {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
        }
        .expert-slider-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .expert-slider-title i { color: #c9a227; }
        .expert-list {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        .expert-list::-webkit-scrollbar { height: 6px; }
        .expert-list::-webkit-scrollbar-track { background: #e9ecef; border-radius: 3px; }
        .expert-list::-webkit-scrollbar-thumb { background: #c9a227; border-radius: 3px; }
        .expert-card {
            flex-shrink: 0;
            width: 160px;
            background: white;
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid transparent;
        }
        .expert-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-color: #c9a227;
        }
        .expert-avatar {
            width: 50px; height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 8px;
            font-size: 20px; font-weight: 700; color: white;
        }
        .expert-name { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 5px; }
        .expert-type { font-size: 12px; color: #6c757d; margin-bottom: 10px; }
        .expert-rate {
            font-size: 14px;
            color: #c9a227;
            font-weight: 700;
        }
        .expert-rate-bar {
            height: 4px;
            background: #e9ecef;
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
        }
        .expert-rate-fill {
            height: 100%;
            background: linear-gradient(90deg, #c9a227 0%, #ffd700 100%);
            border-radius: 2px;
        }

        /* ��ʿ�б����� */
        .tips-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }
        .tips-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tips-title i { color: #28a745; }
        .tips-more {
            color: #1a4d8c;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.3s;
        }
        .tips-more:hover { color: #c9a227; }

        /* ��ʿ���� */
        .tips-table {
            width: 100%;
            border-collapse: collapse;
        }
        .tips-table-header {
            display: grid;
            grid-template-columns: 90px 100px minmax(200px, 1fr) 120px 70px 70px;
            gap: 8px;
            padding: 12px 15px;
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            color: white;
            font-weight: 600;
            font-size: 13px;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        .tips-row {
            display: grid;
            grid-template-columns: 90px 100px minmax(200px, 1fr) 120px 70px 70px;
            gap: 8px;
            padding: 10px 15px;
            background: #ffffff;
            border-radius: 8px;
            margin-bottom: 6px;
            transition: all 0.3s;
            align-items: center;
            font-size: 13px;
            border: 1px solid #e9ecef;
        }
        .tips-row:hover {
            background: #f8f9fa;
            border-color: #c9a227;
            transform: translateX(3px);
        }
        .tips-row:nth-child(even) { background: #f8f9fa; }
        .tips-row:nth-child(even):hover { background: #e9ecef; }
        .league-badge {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            color: white;
        }
        .match-time { font-size: 13px; color: #6c757d; }
        .match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        .match-teams b {
            color: #c9a227;
            font-size: 14px;
        }
        .recommendation {
            font-size: 14px;
            color: #1a4d8c;
            font-weight: 600;
        }
        .recommendation span {
            font-size: 12px;
            color: #6c757d;
            font-weight: 400;
        }
        .score { font-size: 14px; font-weight: 700; color: #495057; }
        .result {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
        }
        .result-win { background: #d4edda; color: #155724; }
        .result-lose { background: #f8d7da; color: #721c24; }
        .result-draw { background: #fff3cd; color: #856404; }
        .result-pending { background: #e2e3e5; color: #383d41; }

        /* ��ʷ��¼ */
        .history-section {
            margin-top: 20px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            border: 1px solid #dee2e6;
        }
        .history-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 12px;
            border-bottom: 1px solid #dee2e6;
        }
        .history-title i {
            color: #c9a227;
            font-size: 18px;
        }
        .history-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 13px;
            color: #6c757d;
        }
        .history-stats span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .history-stats .stat-dot {
            width: 10px; height: 10px;
            border-radius: 50%;
        }
        .history-stats .win-dot { background: #dc3545; }
        .history-stats .lose-dot { background: #6c757d; }
        .history-stats .draw-dot { background: #28a745; }
        .history-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            padding: 12px;
            background: white;
            border-radius: 8px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
        }
        .history-grid .history-item {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            color: white;
            text-align: center;
            line-height: 1;
            margin: 2px;
        }
        .history-grid .history-item:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .historywin {
            background: #dc3545 !important;
            background-color: #dc3545 !important;
            color: #ffffff !important;
        }
        .historylose {
            background: #6c757d !important;
            background-color: #6c757d !important;
            color: #ffffff !important;
        }
        .historydraw {
            background: #28a745 !important;
            background-color: #28a745 !important;
            color: #ffffff !important;
        }

        /* ����� */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
            
            
        }
        .sidebar-card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            width: 100%;
        }
        .sidebar-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-title i { color: #c9a227; }

        /* ר������ */
        .ranking-list { list-style: none; }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s;
        }
        .ranking-item:last-child { border-bottom: none; }
        .ranking-item:hover { background: #f8f9fa; margin: 0 -8px; padding: 8px; border-radius: 6px; }
        .rank-number {
            width: 24px; height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            background: #e9ecef;
            color: #6c757d;
            flex-shrink: 0;
        }
        .rank-number.top {
            background: linear-gradient(135deg, #c9a227 0%, #ffd700 100%);
            color: #1a1a2e;
        }
        .rank-avatar {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a4d8c 0%, #2a6db8 100%);
            display: flex; align-items: center; justify-content: center;
            font-size: 14px; font-weight: 700; color: white;
            flex-shrink: 0;
        }
        .rank-info { flex: 1; }
        .rank-name {
            font-size: 14px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 3px;
        }
        .rank-record {
            font-size: 12px;
            color: #6c757d;
        }
        .rank-record em { font-style: normal; font-weight: 600; }
        .rank-record em.s { color: #dc3545; }
        .rank-record em.p { color: #28a745; }
        .rank-record em.f { color: #6c757d; }
        .rank-rate {
            font-size: 16px;
            font-weight: 700;
            color: #c9a227;
        }

        /* �ͷ���Ƭ */
        .service-card {
            text-align: center;
        }
        .service-time {
            font-size: 12px;
            color: #6c757d;
            margin-left: 8px;
        }
        .service-tel {
            font-size: 24px;
            font-weight: 700;
            color: #1a4d8c;
            margin: 15px 0;
        }
        .service-wechat {
            width: 100px; height: 100px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
        }
        .service-wechat img { width: 100%; height: 100%; object-fit: cover; }

        /* ����ͼƬ */
        .chat img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
        }

        /* �������� */
        .faq-list { list-style: none; }
        .faq-item {
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
        }
        .faq-item:last-child { border-bottom: none; }
        .faq-item a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #495057;
            font-size: 14px;
            transition: all 0.3s;
        }
        .faq-item a::before {
            content: '?';
            width: 20px; height: 20px;
            background: #e9ecef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #6c757d;
        }
        .faq-item a:hover { color: #1a4d8c; padding-left: 5px; }
        .faq-item a:hover::before { background: #1a4d8c; color: white; }

        /* ��ǩ�� */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-item {
            padding: 6px 14px;
            background: #f8f9fa;
            border-radius: 20px;
            font-size: 13px;
            color: #495057;
            transition: all 0.3s;
            cursor: pointer;
        }
        .tag-item:hover {
            background: #c9a227;
            color: #1a1a2e;
            transform: translateY(-2px);
        }

        /* ���ض��� */
        .back-to-top {
            position: fixed; bottom: 30px; right: 30px;
            width: 50px; height: 50px;
            background: linear-gradient(135deg, #1a4d8c 0%, #4da6ff 100%);
            border: 2px solid #c9a227; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 20px;
            cursor: pointer; transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 999;
        }
        .back-to-top:hover {
            background: linear-gradient(135deg, #c9a227 0%, #a08220 100%);
            color: #0d2137; transform: translateY(-5px);
        }
