:root {
            --primary-color: #1a3a5f;
            --secondary-color: #d4af37;
            --accent-color: #c8102e;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
            line-height: 1.8;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--primary-color);
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .navbar-nav .nav-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-section h1 {
            color: var(--secondary-color);
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            color: var(--primary-color);
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #c49a2b;
            transform: scale(1.05);
            color: white;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 50px;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .card-custom {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
        }
        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .card-custom img {
            height: 220px;
            object-fit: cover;
        }
        .card-custom .card-body {
            padding: 25px;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(212, 175, 55, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--secondary-color);
            font-size: 1.8rem;
        }
        .live-score {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 5px solid var(--accent-color);
        }
        .live-score h4 {
            color: var(--secondary-color);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
        }
        .data-table th, .data-table td {
            padding: 12px 15px;
            border: 1px solid #dee2e6;
            text-align: center;
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .data-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px 10px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            color: var(--primary-color);
            font-weight: 500;
            transition: var(--transition);
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        footer a {
            color: #ddd;
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            transform: rotate(15deg);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section p {
                font-size: 1.1rem;
            }
            .section-padding {
                padding: 50px 0;
            }
        }
