@keyframes apparitionAide {
    from {
        opacity: 0;
        filter: blur(2px) saturate(0.6);
    }
    to
    {
        opacity: 1;
        filter: blur(0) saturate(1);
    }
}

.pageEntree {
    width: 70%;
    margin: 0 auto;

    h3 {
        color: var(--couleur-texte-translucide);
        text-shadow: 0 0 2px #ffffff40;
        font-weight: 100;
        letter-spacing: 3px;
        text-wrap-mode: nowrap;
        padding: 24px;
    }
}

.aideAffichee {
    margin: 0 auto;
    background-color: var(--couleur-carte);
    border: var(--bordure);
    border-radius: var(--rayon-bordure);
    backdrop-filter: var(--flou-carte);
    padding: 24px;
    box-shadow: var(--ombre-elevee);
    animation: apparitionAide 600ms cubic-bezier(0.2, 0.5, 0.45, 0.94) both;

    h3 {
        color: var(--couleur-texte-translucide);
        font-size: 1.2em;
        text-shadow: 0 0 2px #ffffff40;
        font-weight: 100;
        letter-spacing: 4px;
        text-wrap-mode: nowrap;
        padding: 6px;
        padding-left: 24px;
    }

    h4 {
        color: var(--couleur-texte-translucide);
        font-weight: 100;
        padding: 6px;
        letter-spacing: 2px;
        font-style: italic;
        font-size: 1.2em;
    }

    p {
        color: var(--couleur-texte-translucide);
        font-weight: 100;
        padding: 12px;
        margin-left: 12px;
        font-size: 0.9em;
        letter-spacing: 1px;
        text-align: justify;
        line-height: 24px;
        width: 80%;
    }

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        width: 320px;
        height: 28px;
        border-radius: 14px;
        font-size: 0.8em;
        margin-bottom: 12px;
        letter-spacing: 2px;
        color: var(--couleur-texte-translucide);
        border: var(--bordure);
        background-color: var(--couleur-carte);
        box-shadow: var(--ombre-douce);
        transition: var(--transition-douce);
    }
}

.aideAffichee a:hover {
    transform: scale(1.04) translateY(-1px) rotate(0.2deg);
    box-shadow: var(--ombre-elevee);
}

.grilleAutreAide {
    display: flex;
    flex-wrap: wrap;
}

.carteAideLien {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: var(--couleur-carte);
    backdrop-filter: var(--flou-carte);
    text-decoration: none;
    width: 540px;
    height: 150px;
    margin: 6px 12px;
    padding: 24px;
    border: var(--bordure);
    border-radius: var(--rayon-bordure);
    box-shadow: var(--ombre-douce);
    transition: var(--transition-douce);
    animation: apparitionAide 600ms cubic-bezier(0.2, 0.5, 0.45, 0.94) both;

    h3 {
        padding: 6px;
    }

    h4 {
        color: var(--couleur-texte-translucide);
        font-weight: 400;
    }
}

.carteAideLien:hover {
    transform: scale(1.025) translateY(-2px) rotate(0.5deg);
    box-shadow: var(--ombre-elevee);
}