:root {
            --primary-color: #1a6d3d;
            --secondary-color: #ffcc00;
            --dark-color: #0a2e1a;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .navbar-brand i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 46, 26, 0.9), rgba(10, 46, 26, 0.8)), url('https://images.unsplash.com/photo-1577223625818-75bc1f2ac0e5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: rgba(26, 109, 61, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        .service-icon i {
            font-size: 2.2rem;
            color: var(--primary-color);
        }
        .stats-section {
            background-color: var(--dark-color);
            color: white;
            padding: 80px 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        .analysis-card {
            border-left: 5px solid var(--primary-color);
            background-color: #f8f9fa;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s;
        }
        .analysis-card:hover {
            background-color: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        .news-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            height: 100%;
            border: 1px solid #eee;
        }
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .news-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .news-img {
            height: 220px;
            object-fit: cover;
        }
        .contact-info {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(26, 109, 61, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }
        .contact-icon i {
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            background-color: white;
            padding: 12px 25px;
            margin: 0 10px 15px;
            border-radius: 50px;
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            border: 1px solid #e9ecef;
            transition: all 0.3s;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 109, 61, 0.2);
        }
        footer {
            background-color: var(--dark-color);
            color: rgba(255,255,255,0.8);
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        .footer-divider {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin: 40px 0;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-secondary-custom:hover {
            background-color: #e6b800;
            border-color: #e6b800;
            color: var(--dark-color);
            transform: translateY(-3px);
        }
        .highlight-text {
            color: var(--primary-color);
            font-weight: 700;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .navbar-toggler {
            border-color: rgba(255,255,255,0.2);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26, 109, 61, 0.25);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
        }
        .back-to-top.show {
            opacity: 1;
        }
        .back-to-top:hover {
            background-color: var(--dark-color);
            color: white;
            transform: translateY(-5px);
        }
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 90px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s;
        }
        .floating-whatsapp:hover {
            transform: translateY(-5px) scale(1.1);
            color: white;
        }
        .floating-whatsapp i {
            font-size: 1.8rem;
        }
        .analysis-badge {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        .match-card {
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #e9ecef;
            transition: all 0.3s;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        .match-date {
            background-color: var(--dark-color);
            color: white;
            padding: 10px 0;
            text-align: center;
            font-weight: 600;
        }
        .match-teams {
            padding: 25px 15px;
            text-align: center;
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        .prediction-badge {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }
        .progress-bar-custom {
            background-color: var(--primary-color);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 109, 61, 0.1);
            color: var(--dark-color);
            font-weight: 600;
        }
        .accordion-button:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26, 109, 61, 0.25);
        }
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a6d3d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border: 3px solid var(--primary-color);
        }
