﻿
/* Conteneur des particules */
#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}


body {
    background-color: #1c1c1c; /* Couleur de fond grise foncée */
    color: var(--tg-theme-text-color);
    text-align: center; /* Centrer le contenu */
    font-family: Arial, sans-serif;
    padding-top: 60px; /* Ajout d'un espacement pour éviter le chevauchement avec le lien "Partager" */
}

/* Styles Initiaux pour les Éléments à Animer */
.animate-on-enter {
    opacity: 0;
    transform: translateY(20px); /* Déplacement initial vers le bas */
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.logo-container {
    display: inline-block;
    position: relative;
    margin: 20px;
    padding: 5px; /* Ajuster l'espace autour de l'image */
    border-radius: 15px; /* Ajuster le rayon des bords pour correspondre à l'image */
}

.logo-button {
    width: 200px;
    height: auto;
    display: block;
    border-radius: 10px; /* Ajuster le rayon des bords de l'image */
}

.refund-container {
    background: linear-gradient(90deg, #3A5FCD, #1C3B6C, #7edcfe);
    background-size: 300%;  /* Augmenter la taille pour permettre le déplacement du dégradé */
    animation: gradient-move 3s ease-in-out infinite alternate;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.prime-container {
    background: linear-gradient(90deg, #9579f2, #6e4fce, #a17df5); /* Dégradé violet */
    background-size: 300%;
    animation: gradient-move 3s ease-in-out infinite alternate;
}

.description {
    font-size: 16px;
    margin: 20px 0;
}

/* Modification pour appliquer la police Bebas Neue aux boutons "Rejoindre nos canaux" et "Nous contacter" */
.link {
    display: block;
    margin: 10px 0;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    padding: 15px 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #3A5FCD, #9579f2, #6e4fce, #1C3B6C);
    background-size: 300%;
    color: #fff;
    transition: background 0.3s;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Bebas Neue', cursive;
    animation: gradient-move 3s ease-in-out infinite alternate;
}

.link:hover {
    background: linear-gradient(to right, #1C3B6C, #6e4fce, #9579f2, #3A5FCD); /* Inverser les couleurs au survol */
}

.separator {
    height: 2px;
    width: 80%;
    margin: 20px auto; /* Réduire la marge pour remonter le trait séparateur */
    background: linear-gradient(90deg, #3A5FCD, #9579f2, #6e4fce, #1C3B6C);
    background-size: 300%;
    animation: gradient-move 3s ease-in-out infinite alternate;
    border: none;
}

.gradient-text {
    font-size: 42px;
    font-family: 'Bebas Neue', cursive;
    text-align: center;
    background: linear-gradient(90deg, #3A5FCD, #9579f2, #6e4fce, #1C3B6C);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-move 3s ease-in-out infinite alternate;
    margin: 10px 0;
}

/* ======================== */
/* Styles pour le Lien de Partage */
/* ======================== */

.share-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000; /* Assure que le lien reste au-dessus des autres éléments */
}

.share-link {
    padding: 10px 20px;
    color: #6e4fce; /* Couleur personnalisée */
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px; /* Espacement entre l'icône et le texte */
    text-decoration: none; /* Suppression de la sous-ligne */
    font-family: Arial, sans-serif;
}

/* Ordre des pseudo-classes : :link, :visited, :hover, :active */
.share-link:link {
    color: #6e4fce; /* Couleur personnalisée */
}

.share-link:visited {
    color: #6e4fce; /* Maintient la couleur personnalisée */
}

.share-link:hover {
    color: #6e4fce; /* Couleur au survol */
}

.share-link:active,
.share-link:focus {
    color: #6e4fce; /* Maintient la couleur personnalisée lors du clic ou de la focalisation */
}

.share-link i {
    font-size: 18px; /* Taille de l'icône */
}

