/* ==========================================================================
   LEGAL & CONTENT PAGES (About, Terms, Privacy)
   ========================================================================== */

/* Animation du Logo */
.floating-animation {
    animation: floating 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--gacha));
    max-width: 280px;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Typographie des paragraphes */
.text-justify-relaxed p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* Séparateur Titre */
.title-divider-small {
    width: 100px;
    height: 3px;
    background-color: var(--gacha);
    border: none;
    opacity: 1;
}

/* Lueur localisée derrière le logo */
.logo-glow-behind {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background-color: var(--gacha);
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

/* Box équipe */
.team-card-footer {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

/* ==========================================================================
   LOGO SPECIAL AUTH (Login/Inscription)
   ========================================================================== */

/* On recrée la boîte du logo car elle n'a pas de lien parent ici */
.logo-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom right, var(--gacha), #4f46e5) !important;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.logo-box:hover {
    transform: scale(1.05);
}

/* On force l'affichage de la lueur sur les pages auth */
.logo-glow {
    position: absolute;
    inset: -8px; /* Un peu plus large pour l'effet d'impact */
    background-color: rgba(139, 92, 246, 0.5); /* Utilisation de la couleur gacha */
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.7; /* Partiellement visible par défaut pour le style */
    transition: opacity 0.3s ease, filter 0.3s ease;
    z-index: 0;
}

/* Effet au survol de la boîte elle-même */
.logo-box:hover .logo-glow {
    opacity: 1;
    filter: blur(20px);
}

.logo-icon {
    width: 75%;
    height: 75%;
    object-fit: contain;
    z-index: 1; /* Passe au dessus de la lueur */
}