        :root {
            --primary-white: #ffffff;
            --secondary-dark: #1a1a2e;
            --accent-green: #00d26a;
            --accent-orange: #ff6b35;
            --text-gray: #6c757d;
            --border-light: #e9ecef;
            --hover-bg: #f8f9fa;
        }

        * {
            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;
        }

        /* 顶部实时比分条 */
        .live-ticker {
            background: var(--secondary-dark);
            color: white;
            font-size: 0.85rem;
            padding: 8px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-wrapper {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .match-item {
            display: inline-flex;
            align-items: center;
            padding: 0 20px;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .match-item:last-child {
            border-right: none;
        }

        .team-name {
            font-weight: 600;
            margin: 0 8px;
        }

        .vs {
            color: var(--accent-green);
            font-weight: bold;
            margin: 0 5px;
        }
         .ticker-wrapper a {
           color: #fff;
        }
        .score {
            background: var(--accent-green);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: bold;
            margin: 0 8px;
            font-size: 12px;
        }

        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #ff4444;
            border-radius: 50%;
            margin-right: 6px;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* 主导航栏 */
        .main-header {
            background: var(--primary-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            padding: 0;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary-dark) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #00b894 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .nav-link {
            color: var(--secondary-dark) !important;
            font-weight: 600;
            padding: 1.5rem 1.2rem !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-green) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 60%;
        }

        /* 搜索框 */
        .search-box {
            position: relative;
            margin-right: 20px;
        }

        .search-input {
            border: 2px solid var(--border-light);
            border-radius: 25px;
            padding: 8px 40px 8px 20px;
            width: 250px;
            transition: all 0.3s ease;
            background: var(--hover-bg);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--accent-green);
            width: 300px;
            background: white;
            box-shadow: 0 0 0 4px rgba(0, 210, 106, 0.1);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-gray);
            padding: 5px 15px;
            cursor: pointer;
        }

        .search-input:focus + .search-btn {
            color: var(--accent-green);
        }

        /* 用户操作区 */
        .user-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-login {
            border: 2px solid var(--secondary-dark);
            color: var(--secondary-dark);
            border-radius: 25px;
            padding: 8px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: var(--secondary-dark);
            color: white;
        }

        .btn-primary-custom {
            background: var(--accent-green);
            border: none;
            border-radius: 25px;
            padding: 8px 25px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background: #00b894;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 210, 106, 0.3);
        }

        /* 次级导航 - 热门联赛 */
        .sub-nav {
            background: white;
            border-bottom: 1px solid var(--border-light);
            padding: 10px 0;
        }

        .league-tags {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .league-tags::-webkit-scrollbar {
            display: none;
        }

        .league-tag {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: var(--hover-bg);
            border-radius: 20px;
            text-decoration: none;
            color: var(--secondary-dark);
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .league-tag:hover {
            background: white;
            border-color: var(--accent-green);
            color: var(--accent-green);
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .league-tag img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        /* 轮播图区域 */
        .hero-carousel {
            margin-top: 0;
        }

        .carousel-item {
            height: 500px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            opacity: 0.7;
        }

        .carousel-caption {
            text-align: left;
            left: 10%;
            right: 10%;
            bottom: 20%;
        }

        .carousel-caption h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 6px;
            background-color: rgba(255,255,255,0.5);
        }

        .carousel-indicators button.active {
            background-color: var(--accent-green);
        }

        .tag-badge {
            display: inline-block;
            background: var(--accent-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* 响应式调整 */
        @media (max-width: 991px) {
            .search-input {
                width: 100%;
                margin: 10px 0;
            }
            
            .search-input:focus {
                width: 100%;
            }
            
            .nav-link {
                padding: 1rem !important;
            }
            
            .nav-link::after {
                display: none;
            }
            
            .carousel-item {
                height: 300px;
            }
            
            .carousel-caption h2 {
                font-size: 1.5rem;
            }
        }

        /* 快捷功能按钮 */
        .quick-actions {
            position: fixed;
            right: 30px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .quick-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-dark);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .quick-btn:hover {
            background: var(--accent-green);
            color: white;
            transform: scale(1.1);
        }
    body,td,th {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
