    :root {
            --rouge: #DA291C;
            --bleu: #00209F;
            --bleu-clair: #1a3bb3;
            --bleu-fonce: #001870;
            --blanc: #FFFFFF;
            --noir: #1A1A1A;
            --gris: #F5F5F5;
            --gris-fonce: #2c2f34;
            --vert: #00A859;
            --jaune: #FFD700;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--gris);
            color: var(--noir);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--rouge) 100%);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            animation: slideIn 0.8s ease;
        }
        
        .logo img {
            height: 50px;
            margin-right: 15px;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
        }
        
        .logo span {
            color: var(--jaune);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            transition: var(--transition);
            position: relative;
        }
        
        nav ul li a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        nav ul li a.active {
            background: var(--rouge);
            box-shadow: 0 4px 12px rgba(218, 41, 28, 0.4);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero{
          height: 70vh;
            background: linear-gradient(rgba(0, 32, 159, 0.9), rgba(218, 41, 28, 0.9)), url('https://images.unsplash.com/photo-1598880940086-4b2b1c31c0c5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--blanc);
            padding: 0 2rem;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1556056504-5c7696c4c28e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            opacity: 0.2;
            animation: pulse 20s infinite alternate;
        }
        
        .hero-content-content {
            max-width: 900px;
            animation: fadeInUp 1.2s ease;
            z-index: 1;
            position: relative;
        }
        
        .hero-actualites h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
            background: linear-gradient(to right, #FFD700, #FFFFFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-actualites p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .breaking-news {
            background: var(--rouge);
            color: white;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            animation: pulse 2s infinite;
        }
        
        .breaking-news span {
            background: white;
            color: var(--rouge);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        /* Section des actualités principales */
        .main-news {
            padding: 6rem 2rem;
            background: var(--blanc);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--bleu);
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .section-title .subtitle {
            color: #666;
            font-size: 1.2rem;
            margin-top: 10px;
        }
        
        /* Le reste de votre CSS reste inchangé */
        /* Section Hero */
        .hero {
            height: 70vh;
            background: linear-gradient(rgba(0, 32, 159, 0.85), rgba(218, 41, 28, 0.85)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--blanc);
            padding: 0 2rem;
            position: relative;
            overflow: hidden;
            margin-top: 80px; /* Ajout de marge pour compenser la navbar fixe */
        }
        
        /* Section Hero */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 32, 159, 0.85), rgba(218, 41, 28, 0.85)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--blanc);
            padding: 0 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }
        
        .hero-content {
            max-width: 900px;
            animation: fadeInUp 1.2s ease;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
            background: linear-gradient(to right, #FFD700, #FFFFFF, #FFD700);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textShine 3s linear infinite;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1.5s ease;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--rouge);
            color: var(--blanc);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            border: 2px solid var(--rouge);
            box-shadow: 0 5px 15px rgba(218, 41, 28, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInUp 1.8s ease, glow 2s infinite;
        }
        
        .cta-button:hover {
            background: transparent;
            border: 2px solid var(--blanc);
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
            animation: bounce 1s;
        }
        
        /* Section Équipe Nationale */
        .national-team {
            padding: 6rem 2rem;
            background-color: var(--blanc);
            position: relative;
        }
        
        .national-team::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--bleu);
            display: inline-block;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .team-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .team-card {
            background: var(--gris);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
        }
        
        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
            z-index: 1;
        }
        
        .team-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-card:hover img {
            transform: scale(1.05);
        }
        
        .team-card-content {
            padding: 2rem;
        }
        
        .team-card h3 {
            color: var(--bleu);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .team-card p {
            color: var(--noir);
            line-height: 1.6;
        }
        
        /* Section Histoire */
      /* Section Histoire - CORRIGÉE */
        .history {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--gris) 0%, var(--blanc) 100%);
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
        }
        
        .history::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--rouge), var(--bleu));
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--bleu);
            display: inline-block;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .history-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
        }
        
        .history-content {
            flex: 1;
            min-width: 300px;
            color: var(--noir); /* Correction: couleur du texte définie */
        }
        
        .history-content h3 {
            font-size: 2rem;
            color: var(--bleu);
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .history-content h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--rouge);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .history-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--noir); /* Correction: couleur du texte définie */
        }
        
        .history-image {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            animation: float 5s ease-in-out infinite;
        }
        
        .history-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .history-image:hover img {
            transform: scale(1.05);
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Animations pour les éléments au défilement */
        .animated {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .animated-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animated-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-left {
            opacity: 1;
            transform: translateX(0);
        }
        
        .animate-right {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .history-container {
                flex-direction: column;
            }
            
            .history-content, .history-image {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .history-content h3 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .history-content h3 {
                font-size: 1.5rem;
            }
            
            .history-content p {
                font-size: 1rem;
            }
        }
        
        /* Section Joueurs Légendaires */
        .legends {
            padding: 6rem 2rem;
            background-color: var(--blanc);
            position: relative;
        }
        
        .legends::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
        }
        
        .legends-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        
        .legend-card {
            background: var(--gris);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            text-align: center;
        }
        
        .legend-card:hover {
            transform: translateY(-10px) rotate(2deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .legend-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
            z-index: 1;
        }
        
        .legend-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 2rem auto 1rem;
            overflow: hidden;
            border: 5px solid var(--bleu);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        
        .legend-card:hover .legend-image {
            transform: scale(1.1);
            border-color: var(--rouge);
        }
        
        .legend-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .legend-content {
            padding: 1.5rem;
        }
        
        .legend-content h3 {
            color: var(--bleu);
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }
        
        .legend-content .position {
            color: var(--rouge);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        /* Section Actualités */
        .news {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--gris) 0%, var(--blanc) 100%);
            position: relative;
        }
        
        .news::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--rouge), var(--bleu));
        }
        
        .news-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .news-card {
            background: var(--blanc);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
        }
        
        .news-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--rouge), var(--bleu));
            z-index: 1;
        }
        
        .news-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .news-card:hover img {
            transform: scale(1.05);
        }
        
        .news-card-content {
            padding: 1.8rem;
        }
        
        .news-card h3 {
            color: var(--rouge);
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }
        
        .news-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .news-date i {
            margin-right: 8px;
            color: var(--bleu);
        }
        
        .news-card p {
            color: var(--noir);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .read-more {
            color: var(--bleu);
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .read-more:hover {
            color: var(--rouge);
            transform: translateX(8px);
        }
        
        /* Section Calendrier */
        .calendar {
            padding: 6rem 2rem;
            background-color: var(--blanc);
            position: relative;
        }
        
        .calendar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
        }
        
        .calendar-container {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--gris);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .calendar-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
        }
        
        .match {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem;
            border-bottom: 1px solid #ddd;
            transition: var(--transition);
            border-radius: 8px;
        }
        
        .match:hover {
            background: rgba(0, 32, 159, 0.05);
            transform: translateX(5px);
        }
        
        .match:last-child {
            border-bottom: none;
        }
        
        .match-date {
            font-weight: bold;
            color: var(--bleu);
            min-width: 120px;
            display: flex;
            align-items: center;
        }
        
        .match-date i {
            margin-right: 8px;
        }
        
        .match-teams {
            display: flex;
            align-items: center;
            flex-grow: 1;
            justify-content: center;
        }
        
        .team {
            display: flex;
            align-items: center;
            font-weight: 600;
        }
        
        .team-logo {
            width: 40px;
            height: 40px;
            margin: 0 1.5rem;
            background: var(--bleu);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        
        .match:hover .team-logo {
            background: var(--rouge);
            transform: scale(1.1);
        }
        
        .vs {
            margin: 0 1rem;
            font-weight: bold;
            color: var(--rouge);
            background: rgba(218, 41, 28, 0.1);
            padding: 5px 10px;
            border-radius: 20px;
        }
        
        .match-info {
            min-width: 150px;
            text-align: right;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .match-info i {
            margin-left: 8px;
        }
        
        /* Section Galerie */
        .gallery {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--gris) 0%, var(--blanc) 100%);
            position: relative;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--rouge), var(--bleu));
        }
        
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            height: 250px;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 1.5rem;
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        /* Section Sponsors */
        .sponsors {
            padding: 4rem 2rem;
            background-color: var(--blanc);
            position: relative;
        }
        
        .sponsors::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--bleu), var(--rouge));
        }
        
        .sponsors-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 3rem;
        }
        
        .sponsor-logo {
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gris);
            border-radius: 10px;
            padding: 1rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .sponsor-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .sponsor-logo img {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(100%);
            transition: var(--transition);
        }
        
        .sponsor-logo:hover img {
            filter: grayscale(0%);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--bleu) 0%, var(--rouge) 100%);
            color: var(--blanc);
            padding: 4rem 2rem 1.5rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--rouge), var(--bleu));
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1.8rem;
            position: relative;
            display: inline-block;
            font-size: 1.5rem;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--blanc);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 0.8rem;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-section a:hover {
            color: #FFD700;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: var(--blanc);
            font-size: 1.2rem;
        }
        
        .social-icon:hover {
            background: var(--rouge);
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Animations pour les éléments au défilement */
        .animated {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .animated-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animated-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-left {
            opacity: 1;
            transform: translateX(0);
        }
        
        .animate-right {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Bouton retour en haut */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--rouge);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(218, 41, 28, 0.4);
            transition: var(--transition);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--bleu);
            transform: translateY(-5px);
            animation: wave 1s;
        }
        
        /* Effet de particules */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .nav-container {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul {
                margin-top: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 1rem 1rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .match {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }
            
            .match-date, .match-info {
                margin-bottom: 0.8rem;
            }
            
            .team-logo {
                margin: 1rem;
            }
            
            .history-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                margin-top: 1rem;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .team-container, .news-container, .legends-container, .gallery-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .sponsors-container {
                gap: 1.5rem;
            }
            
            .sponsor-logo {
                width: 120px;
                height: 60px;
            }
        } 
