/* ==========================================================================
   FICHIER CSS DÉDIÉ À LA PAGE CONDITIONS (disclaimer.html)
   ========================================================================== */

/* ... (Le début du fichier ne change pas : Variables, Reset, Body) ... */
:root {
    --bg-color: #000000;
    --card-bg: #222222;
    --text-color: #e0e0e0;
    --neon-color: #bc13fe;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.light-mode {
    --bg-color: #f4f4f9;
    --card-bg: #ffffff;
    --text-color: #222222;
    --neon-color: #bc13fe;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    transition: background-color 0.4s, color 0.4s;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
   2. BOUTONS DE NAVIGATION (Fixes en haut)
   ========================================================================== */
.top-nav {
    position: absolute;
    top: 40px;
    /* ✅ Ajusté pour s'aligner exactement comme l'accueil */
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    z-index: 100;
}

.action-btn {
    background: var(--card-bg);
    border: 1px solid var(--neon-color);
    color: var(--neon-color);

    /* ✅ MODIFICATION : Taille passée de 50px à 60px (comme l'accueil) */
    width: 90px;
    height: 90px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    /* Icône un peu plus visible */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--neon-color);
}

/* ... (Le reste du fichier reste identique : Text container, Typographie, Mobile) ... */

.text-container {
    width: 90%;
    max-width: 800px;
    margin-top: 110px;
    /* Un peu plus d'espace car les boutons sont plus gros */
    margin-bottom: 50px;
    padding: 50px;
    background: var(--card-bg);
    border: 1px solid var(--neon-color);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.anim-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer-icon {
    font-size: 3.5rem;
    color: var(--neon-color);
    display: block;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

h1 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

#disclaimer-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.highlight {
    color: var(--neon-color);
    font-weight: bold;
    text-shadow: 0 0 1px var(--neon-color);
}

.neon-divider {
    border: 0;
    height: 1px;
    background: var(--neon-color);
    box-shadow: 0 0 10px var(--neon-color);
    margin: 40px auto;
    width: 60%;
    opacity: 0.6;
}

.signature {
    text-align: center;
    font-style: italic;
    opacity: 0.7;
    font-size: 1.2rem;
    margin-top: 20px;
    /* ✅ Signature en majuscule pour le style REVIEW */
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .top-nav {
        padding: 0 15px;
        top: 15px;
    }

    /* ✅ Ajustement mobile pour les boutons */
    .action-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .text-container {
        width: 95%;
        margin-top: 90px;
        padding: 30px 20px;
    }

    .disclaimer-icon {
        font-size: 2.5rem;
    }

    #disclaimer-content p {
        font-size: 1rem;
        text-align: left;
    }
}

/* ✅ Ajustement pour résolution >= 1024px : Bloquer la carte verticalement au centre de la page (effet 1K) */
@media (min-width: 1024px) {
    body {
        justify-content: center;
        /* Padding ajouté pour éviter tout chevauchement avec les boutons top-nav en cas de petit écran en hauteur */
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .text-container {
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* ==========================================================================
   BACKGROUND EFFECT INSIDE CONTAINER
   ========================================================================== */

.bg-effect-wrapper {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.text-container>*:not(.bg-effect-wrapper) {
    position: relative;
    z-index: 1;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transform: translate(0, 0) scale(1);
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    transition: opacity 5s ease-in-out, transform 15s ease-in-out;
}

.aurora-blob.active {
    opacity: 1;
    transform: translate(25px, -18px) scale(1.15);
}

.blob1 {
    width: 750px;
    height: 550px;
    background: radial-gradient(circle, #9900ff44 0%, transparent 60%);
    top: -10%;
    left: -10%;
}

.blob3 {
    width: 700px;
    height: 500px;
    background: radial-gradient(circle, #b026ff44 0%, transparent 60%);
    top: -5%;
    right: -10%;
}

.blob6 {
    width: 750px;
    height: 550px;
    background: radial-gradient(circle, #9d00ff44 0%, transparent 60%);
    top: 50%;
    left: 20%;
}

.blob10 {
    width: 850px;
    height: 650px;
    background: radial-gradient(circle, #9900ff33 0%, transparent 60%);
    bottom: -10%;
    left: -5%;
}

.blob2 {
    width: 600px;
    height: 450px;
    background: radial-gradient(circle, #e026ff33 0%, transparent 60%);
    top: 20%;
    right: 15%;
}

.blob4 {
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, #7a00ff33 0%, transparent 60%);
    bottom: 20%;
    right: 5%;
}

.blob5 {
    width: 650px;
    height: 500px;
    background: radial-gradient(circle, #bc13fe33 0%, transparent 60%);
    top: 40%;
    left: 45%;
}

.blob7 {
    width: 720px;
    height: 520px;
    background: radial-gradient(circle, #a100ff33 0%, transparent 60%);
    bottom: 5%;
    left: 30%;
}