﻿/* Le conteneur des particules */
/* On le place en arrière-plan, sur toute la page */
#tsparticles {
    position: fixed;  /* ou absolute, selon ton besoin */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;      /* Derrière le contenu principal */
    overflow: hidden;
}

body {
    background-color: #1c1c1c;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Mise à jour pour que le titre prenne toute la largeur du cadre */
.step-title {
    font-size: 24px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    text-align: center;
    padding: 10px;
    background: linear-gradient(to right, #9579f2, #6e4fce);
    color: #fff;
    margin: -30px -30px 20px -30px; /* Extension du titre pour prendre toute la largeur */
    font-weight: bold;
    border-radius: 12px 12px 0 0; /* Arrondir les coins supérieurs */
}


.container {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.title {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    background: linear-gradient(to right, #9579f2, #6e4fce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
}

/* ============================ */
/*       BARRE VIOLETTE        */
/* ============================ */
.top-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #9579f2, #6e4fce);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* ============================ */
/*   DÉGRADÉ BAS DE PAGE       */
/* ============================ */
.bottom-gradient {
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to top,
    rgba(149, 121, 242, 0.2),
    rgba(28, 28, 28, 0)
  );
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
}

.separator {
    height: 3px;
    width: 100px;
    margin: 20px auto;
    background: linear-gradient(to right, #9579f2, #6e4fce);
    border: none;
}

.logo {
    width: 350px; /* Taille du logo */
    height: auto;
    margin: 10px auto; /* Ajuster la marge pour centrer le logo */
    background: transparent; /* Assurer que le fond de l'image est transparent */
}

.intro {
    font-family: 'Montserrat', Arial, sans-serif; /* Applique la même police que sur prime_account */
    font-size: 16px; /* Taille de police correspondante */
    color: white; /* Couleur similaire à celle utilisée dans la description */
    line-height: 1.6; /* Ajuste l'espacement pour une meilleure lisibilité */
    margin-bottom: 40px; /* Conserve l'espacement du bas */
    text-align: center; /* Aligne le texte au centre */
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    background-color: #292929;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #9579f2;
}

h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;  /* Titres en blanc */
}

p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
}

.note {
    font-size: 14px;
    color: #9579f2;
}

.parrainage-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(to right, #9579f2, #6e4fce);
    color: #fff;
    font-size: 22px;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 40px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.parrainage-button:hover {
    background: linear-gradient(to right, #6e4fce, #9579f2);
    transform: translateY(-3px);
}

/* Style du bouton Retour appliqué */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 16px;
    color: #9579f2;
    text-decoration: none;
    font-family: 'Bebas Neue', Arial, sans-serif; /* Applique la police Bebas Neue */
    padding: 10px 20px;  /* Ajout d'un padding pour ressembler à un bouton */
    border-radius: 50px; /* Bord arrondi pour ressembler à un bouton */
    background: #222; /* Fond sombre pour le bouton */
    border: 1px solid #9579f2; /* Bordure violette */
}

.back-link:hover {
    text-decoration: underline;
    background: #333; /* Change le fond en survol */
}

