:root {
            --primary: #0A2463;
            --secondary: #D7263D;
            --accent: #FFD166;
            --light: #F8F9FA;
            --dark: #212529;
            --success: #1B998B;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .nav-link {
            font-weight: 600;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(10, 36, 99, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 12px 35px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #b01c31;
            border-color: #b01c31;
            transform: scale(1.05);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 12px 35px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            background-color: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 80px;
            height: 5px;
            background: var(--secondary);
            border-radius: 10px;
        }
        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 60px;
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        .icon-box:hover {
            background: var(--secondary);
            transform: rotate(15deg) scale(1.1);
        }
        .player-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid #eee;
        }
        .player-card img {
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .player-card:hover {
            border-color: var(--secondary);
        }
        .player-name {
            color: var(--primary);
            font-weight: 700;
            margin-top: 15px;
        }
        .player-position {
            color: var(--secondary);
            font-weight: 600;
        }
        .news-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .news-date {
            background: var(--secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 0 0 10px 10px;
            display: inline-block;
            font-weight: 600;
        }
        .contact-info-box {
            padding: 40px 30px;
            border-radius: 15px;
            background: var(--light);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        .contact-info-box:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-10px);
        }
        .contact-info-box:hover i,
        .contact-info-box:hover h4 {
            color: white;
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .flink {
            display: inline-block;
            padding: 12px 25px;
            margin: 10px;
            background: var(--light);
            border-radius: 50px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        footer {
            background: var(--dark);
            color: white;
            padding-top: 80px;
        }
        .footer-links h5 {
            color: var(--accent);
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            margin-right: 12px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 25px 0;
            margin-top: 60px;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            .section-title {
                font-size: 2.2rem;
            }
        }
