/* CSS regroupé pour la page linkeez-sante.php - Optimisation des performances */

/* Style local: bouton Voir la démonstration */
.video-demo-section .play-video-btn {
    font-size: 20px;
    font-weight: 600;
    padding: 14px 24px;
}

@media (max-width: 480px) {
    .video-demo-section .play-video-btn {
        font-size: 18px;
    }
}

/* Section Texte Défilant */
.scrolling-text-section {
    width: 100%;
    background-color: #A6ABFF;
    overflow: hidden;
    padding: 16px 0;
}

.scrolling-text-container {
    width: 100%;
    overflow: hidden;
}

.scrolling-text {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollTextAnimation 25s linear infinite;
    width: 200%;
}

.scrolling-text span {
    color: #141414 !important;
    font-size: 22px;
    font-weight: 600;
    margin: 0 40px;
}

.separator-icon {
    width: 9px;
    height: 41px;
    animation: rotateSeparatorAnimation 3s linear infinite;
}

@keyframes scrollTextAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes rotateSeparatorAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
