/* CSS extrait de index.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%);
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* 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;
            }
        }

        /* Hero Section responsive */
        .hero {
            background-image: url('images/wolfenstein-enemy-territory.png');
            background-size: cover;
            background-position: center;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 0 1rem;
            margin-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
            animation: fadeInUp 1s ease;
            width: 100%;
        }

        .hero h1 {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
            to { text-shadow: 0 0 30px rgba(102, 126, 234, 0.8); }
        }

        .hero p {
            font-size: clamp(1rem, 3vw, 1.3rem);
            margin-bottom: 2rem;
            color: var(--text-secondary);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(-45deg, #1a1a1a, #1f1f1f, #0f3460, #00d4ff);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.29);
        }

        /* Hero logos responsive */
        .hero-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .hero-logos img {
            height: clamp(50px, 10vw, 80px);
            filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
        }

        /* Sections responsive */
        .section {
            padding: clamp(50px, 10vw, 100px) 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 6vw, 3rem);
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(-45deg, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Grilles responsive */
        .servers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        /* Cartes responsive */
        .server-card, .video-card, .admin-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: clamp(1rem, 3vw, 2rem);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .server-card:hover, .video-card:hover, .admin-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .server-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .server-ip {
            font-family: 'Courier New', monospace;
            background: rgba(0, 0, 0, 0.5);
            padding: 0.5rem;
            border-radius: 5px;
            margin: 1rem 0;
            color: var(--accent-color);
            border: 1px solid rgba(0, 212, 255, 0.3);
            font-size: clamp(0.8rem, 2vw, 1rem);
            word-break: break-all;
        }

        .join-button, .submit-button {
            background: linear-gradient(-45deg, #1a1a1a, #1f1f1f, #0f3460, #00d4ff);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            width: 100%;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .join-button:hover, .submit-button:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.29);
        }

        /* About section responsive */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
            margin-top: 2rem;
        }

        .about-text h3 {
            font-family: 'Orbitron', monospace;
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
        }

        .about-text p {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Audio visualizer responsive */
        .audio-visualizer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            margin: 2rem 0;
        }

        .bar {
            width: clamp(3px, 1vw, 4px);
            height: 20px;
            background: linear-gradient(-45deg, #00d4ff);
            border-radius: 2px;
            animation: audioWave 1s ease-in-out infinite;
        }

        @keyframes audioWave {
            0%, 100% { height: 10px; }
            50% { height: 30px; }
        }

        /* Formulaire responsive */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            padding: clamp(1.5rem, 4vw, 2rem);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: inherit;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        /* Footer responsive */
        .footer {
            background: rgba(0, 0, 0, 0.9);
            padding: clamp(2rem, 5vw, 3rem) 0 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-family: 'Orbitron', monospace;
            margin-bottom: 1rem;
            color: var(--accent-color);
            font-size: clamp(1.1rem, 3vw, 1.2rem);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .footer-section ul li a:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(35px, 8vw, 40px);
            height: clamp(35px, 8vw, 40px);
            background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
            border-radius: 50%;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.29);
        }

        /* Animations d'entrée */
        @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);
        }

        /* Bouton Retour en haut */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff 0%, #0f3460 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
        }

        .scroll-to-top:active {
            transform: translateY(-3px) scale(1.05);
        }

        /* Animation de pulsation */
        .scroll-to-top::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            animation: pulse 2s ease-out infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Media queries pour mobile */
        @media (max-width: 768px) {
            .hero {
                min-height: 50vh;
                padding: 1rem;
                margin-top: 70px;
            }

            .hero-logos {
                gap: 1rem;
            }

            .hero-logos img {
                height: 50px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .servers-grid,
            .videos-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .scroll-to-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
                font-size: 1.3rem;
            }
        }

        /* Media queries pour très petits écrans */
        @media (max-width: 480px) {
            .hero {
                min-height: 40vh;
                padding: 0.5rem;
            }

            .section {
                padding: 40px 0;
            }

            .container {
                padding: 0 0.5rem;
            }

            .servers-grid,
            .videos-grid,
            .team-grid {
                gap: 1rem;
            }

            .server-card, .video-card, .admin-card {
                padding: 1rem;
            }

            .audio-visualizer {
                margin: 1rem 0;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
            }
        }

        /* Media queries pour tablettes */
        @media (min-width: 769px) and (max-width: 1024px) {
            .servers-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .videos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Corrections spécifiques */
        video {
            max-width: 100%;
            height: auto;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .server-status {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .status-online {
            color: #4CAF50;
        }

        .status-offline {
            color: #f44336;
        }

        .admin-avatar {
            width: clamp(80px, 15vw, 100px);
            height: clamp(80px, 15vw, 100px);
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: var(--gradient-main);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.5rem, 4vw, 2rem);
            color: white;
            overflow: hidden;
        }

        .admin-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .admin-name {
            font-family: 'Orbitron', monospace;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-size: clamp(1.1rem, 3vw, 1.2rem);
        }

        .admin-role {
            color: var(--text-secondary);
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        .stats-card {
            background: var(--card-bg);
            padding: clamp(1.5rem, 4vw, 2rem);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stats-card i {
            font-size: clamp(3rem, 8vw, 4rem);
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .stats-card h4 {
            font-family: 'Orbitron', monospace;
            margin-bottom: 1rem;
            font-size: clamp(1.1rem, 3vw, 1.2rem);
        }
