body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.categorie-titre {
    font-size: 1.4em;
    font-weight: bold;
    color: #4ade80;
    margin-top: 24px;
    margin-bottom: 4px;
    border-bottom: 1px solid #22c55e;
    padding-bottom: 8px;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px;
    background-color: #111827;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #22c55e;
    transition: background 0.2s;
}

.btn:hover {
    background-color: #14532d;
}

.btn:active {
    transform: scale(0.99);
}

.btn-title {
    font-weight: 600;
    font-size: 1.1em;
    color: #4ade80;
}

.btn-url {
    font-size: 0.85em;
    color: #86efac;
    word-break: break-all;
}

.btn-desc {
    font-size: 0.85em;
    color: #bbf7d0;
    font-style: italic;
}

.desc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Espace entre le texte et le cadenas */
    margin-top: 2px;
}

.lock-icon {
    display: flex;
    align-items: center;
    color: #4ade80; /* Même vert clair que tes titres */
    font-size: 0.85em; /* Force la taille pour matcher .btn-desc */
}