/* CSS extrait de france_xps.php */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #ff6b35;
            --secondary-color: #004e92;
            --accent-color: #00d4ff;
            --dark-bg: #0a0a0a;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --server-accent: #28a745;
            --server-offline: #dc3545;
            --france-blue: #0055a4;
            --france-red: #ef4135;
        }

            /* ... Tout votre CSS existant ... */
        
        /* Styles pour le menu utilisateur - CORRECTION */
        .nav-item.dropdown {
            position: relative;
        }

        .user-menu {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 25px;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
        }

        .user-menu:hover {
            background: rgba(0, 212, 255, 0.2);
            transform: translateY(-2px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            min-width: 200px;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: rgba(0, 212, 255, 0.1);
            color: var(--accent-color);
            padding-left: 1.25rem;
        }

        .logout-link {
            color: #ff6b6b !important;
        }

        .logout-link:hover {
            background: rgba(255, 107, 107, 0.1) !important;
            color: #ff5555 !important;
        }

        .dropdown-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 0.5rem 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .dropdown-menu {
                right: -1rem;
                left: -1rem;
                min-width: auto;
            }
            
            .user-menu {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem !important;
            }
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Background animé */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(-45deg, #000000, #0a0a0a, #1a1a1a, #2a2a2a);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Particules flottantes */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent-color);
            border-radius: 50%;
            animation: float 20s infinite linear;
            opacity: 0.6;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Header moderne */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            padding: 0.5rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 20px auto 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(-45deg, #00d4ff);
            transition: width 0.3s ease;
        }

        .digital-clock {
            font-family: 'Orbitron', monospace;
            font-size: 1rem;
            color: var(--accent-color);
            background: rgba(0, 0, 0, 0.5);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            white-space: nowrap;
            min-width: fit-content;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Container principal */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
            margin-top: 100px;
        }

        /* Hero Section */
        #header-gif-container {
            position: relative;
            z-index: 1;
            overflow: visible;
            margin-bottom: 1rem;
        }

        #header-gif {
            width: 100%;
            max-width: 1320px;
            height: auto;
            max-height: 338px;
            object-fit: cover;
            border-radius: 20px;
        }

        .btn.dropdown-toggle {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 2px solid var(--france-blue);
            border-radius: 25px;
            padding: 1rem 2rem;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            color: var(--text-primary);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn.dropdown-toggle:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 85, 164, 0.5);
            background: rgba(0, 0, 0, 0.9);
        }

        .dropdown-menu {
            background: rgba(0, 0, 0, 0.95) !important;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 15px !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            z-index: 1050 !important;
            position: absolute !important;
            top: 100% !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            min-width: 300px !important;
            max-height: 400px;
            overflow-y: auto;
            margin-top: 0.5rem !important;
        }

        .dropdown-item {
            color: var(--text-primary) !important;
            font-family: 'Orbitron', monospace;
            font-weight: 600;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: var(--gradient-main) !important;
            color: white !important;
            transform: translateX(10px);
        }

        .dropdown-item.active {
            background: var(--gradient-accent) !important;
            color: white !important;
        }

        /* Section serveur */
        .container.text-center {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            animation: fadeInUp 0.8s ease;
            width: 100%;
            margin: 0 auto;
        }

        /* Layout principal */
        .main-content {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .left-column {
            flex: 1;
            min-width: 0;
        }

        .right-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-width: 0;
        }

        /* Tableau d'informations serveur moderne */
        .server-info-table {
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-collapse: separate;
            border-spacing: 0;
        }

        .server-info-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-family: 'Rajdhani', sans-serif;
            font-size: 14px;
        }

        .server-info-table td:first-child {
            background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
            color: white;
            font-weight: bold;
            width: 180px;
            text-align: right;
            font-family: 'Orbitron', monospace;
            text-transform: uppercase;
            font-size: 12px;
        }

        .server-info-table td:last-child {
            background: rgba(255, 255, 255, 0.02);
            color: var(--text-primary);
        }

        .server-info-table tr:last-child td {
            border-bottom: none;
        }

        .server-info-table tr:hover td:last-child {
            background: rgba(0, 212, 255, 0.1);
        }

        /* Tables des équipes modernes */
        .team-table {
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 1rem;
            overflow-x: auto;
        }

        .team-table table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: transparent;
            font-family: 'Rajdhani', sans-serif;
            font-size: 14px;
            min-width: 300px;
        }

        .team-table caption {
            background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
            padding: 1rem;
            margin: 0;
            color: white;
            font-weight: bold;
            font-family: 'Orbitron', monospace;
        }

        .team-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .team-title h3 {
            margin: 0;
            font-size: 1rem;
            color: white !important;
            text-transform: uppercase;
            font-weight: 700;
        }

        .team-table th {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-weight: bold;
            padding: 0.8rem;
            text-align: center;
            font-family: 'Orbitron', monospace;
            font-size: 11px;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .team-table th.player-name {
            text-align: left;
        }

        .team-table td {
            background: rgba(255, 255, 255, 0.02);
            color: var(--text-primary);
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .team-table tr:hover td {
            background: rgba(0, 212, 255, 0.1);
        }

        .team-table tr:last-child td {
            border-bottom: none;
        }

        .team-table td:nth-child(2),
        .team-table td:nth-child(3) {
            text-align: center;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Section spectateurs */
        .server-info-block {
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow-x: auto;
        }

        .server-info-block h3 {
            background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
            color: white !important;
            padding: 1rem;
            margin: 0;
            font-size: 1rem;
            text-transform: uppercase;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }

        .server-info-block table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: transparent;
            font-family: 'Rajdhani', sans-serif;
            font-size: 14px;
            min-width: 300px;
        }

        .server-info-block table th {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-weight: bold;
            padding: 0.8rem;
            text-align: center;
            font-family: 'Orbitron', monospace;
            font-size: 11px;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .server-info-block table th.player-name {
            text-align: left;
        }

        .server-info-block table td {
            background: rgba(255, 255, 255, 0.02);
            color: var(--text-primary);
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .server-info-block table tr:hover td {
            background: rgba(0, 212, 255, 0.1);
        }

        .server-info-block table tr:last-child td {
            border-bottom: none;
        }
       
        #header-gif-container .dropdown {
            position: static;
        }
     
        #header-gif-container .btn.dropdown-toggle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1070;
            width: auto;
            max-width: 90%;
        }

        #header-gif-container .dropdown-menu {
            top: auto !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            z-index: 1080 !important;
            margin-top: 0.5rem !important;
            width: 90%;
            max-width: 300px;
        }

        .server-info-block p {
            color: var(--text-secondary) !important;
            text-align: center;
            padding: 2rem;
            margin: 0;
            font-style: italic;
            background: rgba(255, 255, 255, 0.02);
        }

        /* Image de la carte */
        #mapImage {
            max-width: 200px;
            height: auto;
            border: 2px solid var(--accent-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        #mapImage:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
        }

        /* Liens */
        .server-info-table a,
        .team-table a,
        .server-info-block a {
            color: var(--accent-color) !important;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .server-info-table a:hover,
        .team-table a:hover,
        .server-info-block a:hover {
            color: #88ccff !important;
            text-shadow: 0 0 5px rgba(136, 204, 255, 0.5);
            text-decoration: underline;
        }

        /* Valeurs importantes */
        .server-info-table td[style*="color: #ffff88"],
        .server-info-table td[style*="color: yellow"] {
            color: #ffff88 !important;
            font-weight: bold;
            text-shadow: 0 0 5px rgba(255, 255, 136, 0.3);
        }

        /* Footer moderne */
        .footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 5rem;
        }

        .footer .container {
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .footer-section h3 {
            font-family: 'Orbitron', monospace;
            color: var(--accent-color) !important;
            margin-bottom: 1rem;
        }

        .footer ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .footer ul li img {
            width: 16px;
            height: 16px;
            margin-right: 0.5rem;
        }

        .footer ul li a {
            color: var(--text-secondary) !important;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--accent-color) !important;
        }

        .social_link {
            display: flex;
            gap: 1rem;
            list-style: none;
            padding: 0;
        }

        .social_link li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social_link li a:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.29);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        .copyright a {
            color: var(--accent-color) !important;
        }

        /* Horloge moderne */
        .digital-clock {
            font-family: 'Orbitron', monospace;
            font-size: 1.2rem;
            color: var(--accent-color);
            background: rgba(0, 0, 0, 0.5);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            margin: 3px 0;
            transition: 0.3s;
        }
        /* Mobile responsive */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 0 1rem;
            }
            
            .main-container {
                margin-top: 70px;
                padding: 0.5rem;
            }
            
            .container.text-center {
                padding: 1rem;
            }
            
            .server-info-table td:first-child {
                width: 90px;
                font-size: 9px;
            }
            
            .server-info-table td {
                font-size: 11px;
            }
            
            .team-table caption,
            .server-info-block h3 {
                padding: 0.7rem;
                font-size: 0.9rem;
            }
            
            .team-table th,
            .team-table td,
            .server-info-block th,
            .server-info-block td {
                padding: 0.4rem;
                font-size: 11px;
            }
            
            #mapImage {
                max-width: 120px;
            }
            
            .footer {
                padding: 1.5rem 0 1rem;
            }
            
            .footer-section h3 {
                font-size: 1rem;
            }
            
            .social_link {
                justify-content: center;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Correction pour les tableaux sur mobile */
        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
    </style>
<style>



        @media (max-width: 992px) {
            .logo {
                font-size: 1.5rem;
            }
            
            .nav-menu {
                gap: 1rem;
            }
            
            .server-info-table td:first-child {
                width: 120px;
                font-size: 11px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: flex;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                display: flex;
            }

            .main-container {
                padding: 1rem;
                margin-top: 80px;
            }

            #header-gif {
                height: auto;
                max-height: 200px;
            }

            .main-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .left-column, .right-column {
                width: 100%;
                min-width: 100%;
            }

            .server-info-table td:first-child {
                width: 100px;
                font-size: 10px;
                padding: 0.5rem;
                text-align: left;
            }

            .server-info-table td {
                padding: 0.5rem;
                font-size: 12px;
                word-break: break-word;
            }

            .team-table table,
            .server-info-block table {
                font-size: 12px;
            }

            .team-table th,
            .team-table td,
            .server-info-block th,
            .server-info-block td {
                padding: 0.5rem;
            }

            #mapImage {
                max-width: 150px;
            }

            .team-title h3 {
                font-size: 12px;
            }

            .btn.dropdown-toggle {
                padding: 0.5rem 1rem;
                font-size: 12px;
                white-space: normal;
                text-align: center;
            }
            
            #header-gif-container .btn.dropdown-toggle {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin: 0.5rem auto;
                display: block;
                width: 90%;
            }
            
            #header-gif-container .dropdown-menu {
                position: static !important;
                transform: none !important;
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
            }
            
            .footer {
                padding: 2rem 0 1rem;
                margin-top: 3rem;
            }
            
            .footer .row > div {
                margin-bottom: 2rem;
            }
            
            .footer ul li {
                font-size: 14px;
            }
            
            .copyright {
                padding-top: 1rem;
            }
        }

        @media (max-width: 576px) {
            .logo {
                font-size: 1.2rem;
            }
            
            .digital-clock {
                font-size: 0.9rem;
                padding: 0.3rem 0.6rem;
            }
            
            .main-container {
                padding: 0.5rem;
                margin-top: 0.7rem;
            }
            #header-gif-container {
                height: auto;
            }
            #header-gif {
                max-height: 150px;
            }
            
            .server-info-table td:first-child {
                width: 80px;
                font-size: 9px;
            }
            
            .server-info-table td {
                font-size: 11px;
                padding: 0.3rem;
            }
            
            .team-table table,
            .server-info-block table {
                font-size: 11px;
            }
            
            .team-table th,
            .team-table td,
            .server-info-block th,
            .server-info-block td {
                padding: 0.3rem;
            }
            
            #mapImage {
                max-width: 120px;
            }
            
            .team-title h3 {
                font-size: 10px;
            }
            
            .btn.dropdown-toggle {
                font-size: 10px;
                padding: 0.4rem 0.8rem;
            }
        }

