
        /* Palette de couleurs jaune or/orange et blanc */
        :root {
            --gold: #FFD700;
            --dark-gold: #FFA500;
            --light-gold: #FFEC8B;
            --dark:#000000;
            --white: #FFFFFF;
            --white-text: #ffffff;
            --light-text: #666666;
            --header-height: 70px;
            --nav-height: 60px;
        }

        body{
            font-family:"Maven Pro", sans-serif; 
        }
        /* Styles personnalisés */
        .main-header {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            height: var(--header-height);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-weight: bold;
        }

        .nav-links a:hover {
            background-color: rgba(99, 6, 6, 0.2);
            color: var(--dark);
            transform: translateY(-2px);
        }

        .btn-login {
            background-color: var(--white);
            color: var(--dark-gold);
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .btn-login:hover {
            background-color: var(--dark-gold);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 255, 255, 0.15);
        }

        /* Menu mobile style Betwinner - MODIFIÉ EN NOIR */
        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #000000;
            /* Fond noir */
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            height: var(--nav-height);
            border-top: 2px solid var(--gold);
        }

        .mobile-nav ul {
            display: flex;
            justify-content: space-around;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            height: 100%;
            position: relative;
        }

        .mobile-nav li {
            flex: 1;
            text-align: center;
            height: 100%;
        }

        .mobile-nav a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0.5rem;
            font-size: 0.7rem;
            color: var(--white);
            /* Texte blanc */
            text-decoration: none;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
        }

        .mobile-nav a i {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
            transition: all 0.3s ease;
            color: var(--white);
            /* Icônes blanches */
        }

        .mobile-nav a.active {
            color: var(--gold);
            /* Texte or pour l'élément actif */
            background-color: rgba(255, 215, 0, 0.1);
        }

        .mobile-nav a.active i {
            color: var(--gold);
            /* Icône or pour l'élément actif */
            transform: translateY(-5px);
        }

        .mobile-nav a.active::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: var(--gold);
            border-radius: 0 0 3px 3px;
        }

        .mobile-nav a:hover {
            color: var(--gold);
            /* Texte or au survol */
        }

        .mobile-nav a:hover i {
            color: var(--gold);
            /* Icône or au survol */
            transform: translateY(-3px);
        }

        /* Badge de notification */
        .notification-badge {
            position: absolute;
            top: 5px;
            right: 5px;
            background: #ff4757;
            color: white;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            font-size: 0.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Afficher le menu mobile seulement sur les petits écrans */
        @media (max-width: 768px) {
            .mobile-nav {
                display: block;
            }

            /* Cacher le menu d'en-tête sur mobile */
            .nav-links {
                display: none !important;
            }

            /* Ajuster le padding du main pour éviter que le contenu soit caché par les menus fixes */
            .content-wrapper {
                padding-top: calc(var(--header-height) + 1rem);
                padding-bottom: calc(var(--nav-height) + 1rem);
            }

            .main-nav {
                padding: 0 1rem;
            }
        }

        /* Styles pour la navigation desktop */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Animation pour le logo */
        .site-logo {
            transition: all 0.3s ease;
        }

        .site-logo:hover {
            transform: scale(1.05);
        }

        /* Style pour le contenu principal */
        .content-wrapper {
            min-height: 100vh;
            background-color: #f8fafc;
        }

        /* Menu déroulant pour desktop */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border-radius: 0.5rem;
            min-width: 200px;
            display: none;
            z-index: 1000;
            padding: 0.5rem 0;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            color: var(--dark-text);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--dark-gold);
        }

        .dropdown-item i {
            width: 20px;
            text-align: center;
        }

        /* Sous-menus pour mobile - MODIFIÉ EN NOIR AVEC DISPOSITION CÔTE À CÔTE */
        .mobile-submenu {
            display: none;
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            background: #000000;
            /* Fond noir */
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
            border-radius: 12px 12px 0 0;
            padding: 1rem;
            z-index: 999;
            max-height: 70vh;
            overflow-y: auto;
        }

        .mobile-submenu.active {
            display: block;
            animation: slideUp 0.3s ease;
        }

        .mobile-submenu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* Disposition côte à côte */
            gap: 0.5rem;
        }

        .mobile-submenu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 0.5rem;
            color: var(--white);
            /* Texte blanc */
            text-decoration: none;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            text-align: center;
        }

        .mobile-submenu-item:hover {
            background: rgba(255, 215, 0, 0.2);
            /* Fond or au survol */
            color: var(--gold);
            /* Texte or au survol */
        }

        .mobile-submenu-item i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--white);
            /* Icônes blanches */
            transition: all 0.2s ease;
        }

        .mobile-submenu-item:hover i {
            color: var(--gold);
            /* Icônes or au survol */
        }

        .mobile-submenu-item span {
            font-size: 0.7rem;
        }

        .toggle-submenu {
            background: none;
            border: none;
            width: 100%;
            text-align: center;
            padding: 0.5rem;
            font-size: 0.7rem;
            color: var(--white);
            /* Texte blanc */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            cursor: pointer;
        }

        .toggle-submenu i {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
            transition: transform 0.3s ease;
            color: var(--white);
            /* Icône blanche */
        }

        .toggle-submenu.active {
            color: var(--gold);
            /* Texte or pour l'élément actif */
            background-color: rgba(255, 215, 0, 0.1);
        }

        .toggle-submenu.active i {
            transform: rotate(45deg);
            color: var(--gold);
            /* Icône or pour l'élément actif */
        }

        .toggle-submenu.active::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: var(--gold);
            border-radius: 0 0 3px 3px;
        }

        /* Animation pour le sous-menu */
        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Overlay pour le sous-menu */
        .submenu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: var(--nav-height);
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
        }

        .submenu-overlay.active {
            display: block;
        }