:root {
            --primary-color: #1a365d;
            --secondary-color: #e63946;
            --accent-color: #2a9d8f;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Noto Sans SC', 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #f5f7fa;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        h3 {
            font-size: 1.8rem;
        }
        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        section {
            padding: 80px 0;
        }
        .section-header {
            margin-bottom: 50px;
        }
        .bg-light {
            background-color: var(--light-color) !important;
        }
        .bg-primary {
            background-color: var(--primary-color) !important;
        }
        .navbar {
            background-color: rgba(26, 54, 93, 0.95);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: rgba(230, 57, 70, 0.2);
        }
        .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");
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .hero-btns .btn {
            margin: 5px 10px;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        .btn-primary:hover {
            background-color: #c1121f;
            border-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
        }
        .btn-outline-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
        }
        .card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(42, 157, 143, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--accent-color);
            font-size: 30px;
        }
        .service-card {
            padding: 30px;
            text-align: center;
        }
        .stats {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        .match-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--box-shadow);
            border-left: 4px solid var(--secondary-color);
            transition: var(--transition);
        }
        .match-card:hover {
            transform: translateX(5px);
        }
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .match-team {
            display: flex;
            align-items: center;
            width: 40%;
        }
        .match-team.home {
            justify-content: flex-end;
        }
        .team-logo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 15px;
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-color);
        }
        .match-score {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            min-width: 80px;
            text-align: center;
        }
        .news-card {
            height: 100%;
        }
        .news-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .news-card .card-body {
            display: flex;
            flex-direction: column;
        }
        .news-card .card-title {
            font-size: 1.2rem;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        .news-card .card-text {
            flex-grow: 1;
            color: var(--gray-color);
            margin-bottom: 15px;
        }
        .news-date {
            color: var(--secondary-color);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .contact-info {
            padding: 30px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            height: 100%;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(42, 157, 143, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .friendlink {
            background-color: var(--light-color);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px 12px;
            background-color: white;
            border-radius: var(--border-radius);
            color: var(--dark-color);
            text-decoration: none;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid #e9ecef;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        footer {
            background-color: var(--primary-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 20px;
        }
        footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .hero {
                padding: 120px 0 80px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            section {
                padding: 60px 0;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 100px 0 60px;
                background-attachment: scroll;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .match-teams {
                flex-direction: column;
            }
            .match-team {
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }
            .match-team.home {
                justify-content: center;
            }
            .match-score {
                order: 3;
                margin-top: 10px;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-btns .btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }
            section {
                padding: 50px 0;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-color);
        }
