        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            color: #2d3748;
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Navigation */
        nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .nav-logo {
            height: 45px;
            width: 45px;
            border-radius: 50%;
            object-fit: cover;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
            border: 2px solid rgba(12, 77, 99, 0.2);
        }

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

        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        nav a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #0c4d63;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:active {
            transform: translateY(0);
        }

        /* Animation de clic pour les liens nav */
        nav a.clicked {
            animation: navClick 0.3s ease;
        }

        @keyframes navClick {
            0% { transform: scale(1); }
            50% { transform: scale(0.95); }
            100% { transform: scale(1); }
        }

        /* Header Hero */
        header {
            background: linear-gradient(135deg, rgba(12, 77, 99, 0.95) 0%, rgba(10, 61, 79, 0.95) 100%);
            color: white;
            padding: 8rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .header-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Main Content */
        main {
            background: white;
            margin: 0 0 2rem;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            position: relative;
            padding: 4rem 0;
        }

        .servers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .page-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .page-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            border-radius: 2px;
        }

        .page-description {
            font-size: 1.2rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        /* Servers Grid */
        .servers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .server-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(12, 77, 99, 0.1);
            position: relative;
            transform: translateY(0);
        }

        .server-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(12, 77, 99, 0.2);
        }

        .server-banner {
            height: 200px;
            background: linear-gradient(135deg, #0c4d63 0%, #0a3d4f 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .server-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
        }

        .server-banner.darkrp {
            background: linear-gradient(135deg, #e7e7e7 0%, #e7e7e7 100%);
        }

        .server-banner.sandbox {
            background: linear-gradient(135deg, #0c4d63 0%, #0a3d4f 100%);
        }

        .server-banner.ttt {
            background: linear-gradient(135deg, #0c4d63 0%, #0a3d4f 100%);
        }

        .server-content {
            padding: 2rem;
        }

        .server-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .server-type {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(12, 77, 99, 0.1);
            color: #0c4d63;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .server-description {
            color: #718096;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .server-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #f7fafc;
            border-radius: 12px;
            border-left: 4px solid #0c4d63;
        }

        .server-players {
            font-weight: 500;
            color: #2d3748;
        }

        .server-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #38a169;
            animation: pulse 2s infinite;
        }

        .status-dot.offline {
            background: #e53e3e;
            animation: none;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .server-ip {
            background: #2d3748;
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            position: relative;
            user-select: all;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .server-ip:hover {
            background: #4a5568;
            transform: scale(1.02);
        }

        .server-actions {
            display: flex;
            gap: 1rem;
        }

        .btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem 1.5rem;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
        }

        .btn:active::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0c4d63 0%, #0a3d4f 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(12, 77, 99, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 77, 99, 0.6);
        }

        .btn-secondary {
            background: #f7fafc;
            color: #4a5568;
            border: 2px solid #e2e8f0;
        }

        .btn-secondary:hover {
            background: #edf2f7;
            border-color: #cbd5e0;
            transform: translateY(-1px);
        }

        /* Toast notification */
        .toast {
            position: fixed;
            top: 100px;
            right: 20px;
            background: #38a169;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 9999;
        }

        .toast.show {
            transform: translateX(0);
        }

        /* Back button */
        .back-btn {
            position: fixed;
            top: 100px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: #4a5568;
            padding: 1rem;
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            z-index: 999;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-btn:hover {
            background: #0c4d63;
            color: white;
            transform: scale(1.1);
        }

        .back-btn:active {
            transform: scale(0.95);
        }

        /* Rules Section */
        #rules {
            background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
            padding: 4rem 2rem;
        }

        .rules-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .rule-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #0c4d63;
            transition: all 0.3s ease;
        }

        .rule-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(12, 77, 99, 0.15);
        }

        .rule-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .rule-text {
            color: #718096;
            line-height: 1.6;
        }

        /* Support Section */
        #support {
            background: white;
            padding: 4rem 2rem;
        }

        .support-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .support-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .support-card {
            background: #f7fafc;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .support-card:hover {
            background: white;
            border-color: #0c4d63;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(12, 77, 99, 0.1);
        }

        /* Members Section */
        #members {
            max-width: none;
            padding: 4rem 3rem;
            background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
        }

        #members .members-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        #members h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        #members h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .member-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(12, 77, 99, 0.1);
            position: relative;
            overflow: hidden;
        }

        .member-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
        }

        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(12, 77, 99, 0.2);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border: 4px solid rgba(12, 77, 99, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #a0aec0;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .member-card:hover .member-avatar {
            border-color: #0c4d63;
            transform: scale(1.05);
        }

        .member-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .member-role {
            font-size: 1rem;
            color: #0c4d63;
            font-weight: 500;
            background: rgba(12, 77, 99, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .member-description {
            font-size: 0.95rem;
            color: #718096;
            line-height: 1.6;
        }

        h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1.5rem;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            border-radius: 2px;
        }

        .server-card:nth-child(1) { animation-delay: 0.1s; }
        .server-card:nth-child(2) { animation-delay: 0.2s; }
        .server-card:nth-child(3) { animation-delay: 0.3s; }
        .server-card:nth-child(4) { animation-delay: 0.4s; }

        .footer-contact-links {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .footer-contact-links a {
            color: #0c4d63;
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border: 2px solid transparent;
        }

        .footer-contact-links a:hover {
            background: #0c4d63;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(12, 77, 99, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Footer avec contact intégré */
        footer {
            background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
            padding: 4rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(12, 77, 99, 0.1);
            margin-top: 2rem;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-contact {
            margin-bottom: 3rem;
        }

        .footer-contact h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-contact h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0c4d63, #0a3d4f);
            border-radius: 2px;
        }

        .footer-contact p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-copyright {
            color: #718096;
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(12, 77, 99, 0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .servers-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .server-card {
                margin: 0 1rem;
            }

            .servers-container {
                padding: 0 1rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            .server-actions {
                flex-direction: column;
            }

            .back-btn {
                left: 10px;
                top: 90px;
            }

            nav ul {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.9rem;
            }
        }

        /* Animation scroll */
        .server-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

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

        /* Section fade-in animation */
        .section-fade {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .section-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }

                /* Bouton Accueil spécial */
        .home-btn {
            background: linear-gradient(135deg, #0c4d63 0%, #0a3d4f 100%);
            color: white !important;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(12, 77, 99, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .home-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(12, 77, 99, 0.6);
            color: white !important;
        }

        .home-btn::after {
            display: none;
        }
        .mention{
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .mention::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #718096, #718096);
            transition: width 0.3s ease;
        }

        .mention:hover {
            color: #718096;
        }

        .mention:hover::after {
            width: 100%;
        }