:root {
            --primary-blue: #0056A3;
            --secondary-gold: #FFD700;
            --accent-orange: #FF5A1F;
            --dark-blue: #003A6B;
            --light-gray: #F8F9FA;
            --dark-gray: #343A40;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark-blue);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-orange) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 163, 0.85), rgba(0, 58, 107, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            margin-top: 76px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background: var(--accent-orange);
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .badge-rufc {
            background: linear-gradient(45deg, var(--primary-blue), var(--dark-blue));
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
        }
        .btn-primary-rufc {
            background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
        }
        .btn-primary-rufc:hover {
            background: linear-gradient(to right, var(--dark-blue), var(--accent-orange));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: white;
        }
        .btn-secondary-rufc {
            background: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary-rufc:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .fixture-card {
            border-left: 5px solid var(--accent-orange);
            background: var(--light-gray);
        }
        .player-card img {
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .stadium-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-gray);
            color: var(--primary-blue);
            transition: all 0.3s ease;
            margin: 0 5px;
        }
        .social-icon:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-5px);
        }
        .footer {
            background: linear-gradient(to right, var(--dark-blue), #001f3f);
            color: white;
            padding-top: 4rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: var(--light-gray);
            border-radius: 30px;
            color: var(--dark-blue);
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
            text-decoration: none;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .news-card .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
            max-height: 70px;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent-orange);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-5px);
        }
        .match-result {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-orange);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                margin-top: 66px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--primary-blue);
            margin-left: 20px;
        }
        .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: var(--accent-orange);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-orange);
        }
