* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #09040f;
    color: white;
}


/* =========================
   ÉCRAN PRINCIPAL
   ========================= */

.accueil {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;

    overflow: hidden;
}


/* =========================
   IMAGE
   ========================= */

.fond {
    width: 100%;
    position: relative;
}

.fond img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================
   CONTENU
   ========================= */

.contenu {
    position: absolute;
    z-index: 2;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 20px 25px 35px;

    text-align: center;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(5, 2, 10, 0.9) 35%,
        rgba(5, 2, 10, 0.98)
    );
}


/* =========================
   SLOGAN
   ========================= */

.slogan {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;

    margin-bottom: 25px;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}


/* =========================
   MINI NAVIGATION
   ========================= */

.mini-navigation {
    display: flex;
    justify-content: center;
    gap: 35px;

    margin-bottom: 30px;
}

.mini-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;

    font-size: 13px;
}

.mini-icone {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;

    font-size: 21px;

    background: rgba(0, 0, 0, 0.25);
}


/* =========================
   BOUTONS
   ========================= */

.boutons {
    display: flex;
    flex-direction: column;

    gap: 12px;

    width: 100%;
}

.bouton {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 54px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
}


/* CONNEXION */

.connexion {
    color: white;

    background: rgba(20, 10, 30, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.7);
}


/* INSCRIPTION */

.inscription {
    color: white;

    background: #7b3cff;

    border: 1px solid #9d6aff;

    box-shadow: 0 5px 20px rgba(80, 20, 150, 0.35);
}


/* =========================
   PETIT TÉLÉPHONE
   ========================= */

@media (max-width: 380px) {

    .contenu {
        padding: 15px 20px 25px;
    }

    .slogan {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .mini-navigation {
        gap: 25px;
        margin-bottom: 25px;
    }

    .mini-icone {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .bouton {
        min-height: 50px;
        font-size: 15px;
    }
}


/* =========================
   VERSION PC
   ========================= */

@media (min-width: 700px) {

    body {
        display: flex;
        justify-content: center;
        align-items: center;

        min-height: 100vh;
    }

    .accueil {
        width: 430px;
        height: 100vh;

        max-height: 900px;

        overflow: hidden;

        border-radius: 20px;

        box-shadow:
            0 0 40px rgba(0, 0, 0, 0.6);

        background: #09040f;
    }

    .fond {
        width: 100%;
        height: 100%;
    }

    .fond img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: top center;
    }

    .contenu {
        padding: 20px 25px 30px;
    }
}