body {
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(70%);
}

.linktree-container {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
    backdrop-filter: blur(15px); /* Crée un effet de flou */
    background: rgba(0, 0, 0, 0.5); /* Fond noir semi-transparent à 50% d'opacité */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Ajoute une légère bordure pour accentuer la visibilité */
    z-index: 1; /* Assure que ce conteneur soit au-dessus de l'image de fond */
}

.profile {
    margin-bottom: 30px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.profile h2 {
    margin: 10px 0 5px 0;
    font-size: 1.8rem;
    color: #fff; /* Pour s'assurer que le texte soit bien visible */
}

.description {
    font-size: 1rem;
    color: #e8f5e9; /* Texte clair pour contraste */
    margin-bottom: 20px;
}

.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #004d00;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    font-size: 1rem;
}

.button i {
    margin-right: 10px;
}

.button:hover {
    background: #004d00;
    color: #ffffff;
    transform: scale(1.05);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

#newsletterForm input {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.submit-button {
    background: #004d00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button:hover {
    background: #1b5e20;
}
