/* Petit style spécifique pour centrer le menu sur cette page d'accueil */
        body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #f8fafc; /* Gris très clair */
            font-family: sans-serif;
            color: #1e293b;
            min-height: 100vh;
            margin: 0;
        }

        .menu-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 90%;
            max-width: 25rem;
        }

        h1 {
            margin-bottom: 2rem;
            font-size: 1.5rem;
            color: #0f172a;
        }

        .nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .nav-item {
            margin-bottom: 1rem;
        }

        .nav-link {
            display: block;
            padding: 1rem;
            background-color: #0f172a; /* Fond sombre (Skyfear style) */
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .nav-link:hover {
            background-color: #38bdf8; /* Bleu ciel au survol */
            color: #0f172a;
            transform: translateY(-2px);
        }