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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #0a6458 0%, #764ba2 100%); 
            /* background-image: url('/site/assets/img/darkweb.jpg'); */
  /* background-size: cover; L'image couvre tout l'écran */
  /* background-position: center; Centre l'image */
  /* background-repeat: no-repeat; Empêche la répétition */
  /* background-attachment: fixed; L'image reste fixe au scroll */
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            max-width: 600px;
            width: 100%;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            color: white;
        }

        .header h1 {
            font-size: 2.5em;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .header p {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .links-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .link-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 24px 28px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .link-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            background: white;
        }

        .link-content {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .link-title {
            font-size: 1.2em;
            font-weight: 600;
            color: #2d3748;
        }

        .link-description {
            font-size: 0.9em;
            color: #718096;
        }

        .link-description a {
            text-decoration: none;
        }

        .link-description a:hover {
            background: #67c4b79a;
        }

        .link-arrow {
            font-size: 1.5em;
            color: #667eea88;
            transition: transform 0.3s ease;
        }

        .link-card:hover .link-arrow {
            transform: translateX(5px);
        }

        @media (max-width: 640px) {
            .header h1 {
                font-size: 2em;
            }
            
            .link-card {
                padding: 20px;
            }
        }