/* shimmer-styles.css - Style de banner électrique pour Cloud-IT */

/* Configuration commune */
.shimmer-text {
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* Couleur de secours pour mobile */
}

/* Pour les navigateurs qui supportent le background-clip */
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .shimmer-text {
        background: linear-gradient(110deg, #d0e5f5 0%, #ffffff 50%, #d0e5f5 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* STYLE ÉLECTRIQUE - Banner lumineux */
.shimmer-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.08) 20%,
        rgba(0, 255, 255, 0.18) 40%,
        rgba(0, 212, 255, 0.25) 50%,
        rgba(0, 255, 255, 0.18) 60%,
        rgba(0, 212, 255, 0.08) 80%,
        transparent 100%
    );
    animation: electricBanner 4s ease-in-out infinite;
    transform: skewX(-15deg);
    filter: blur(2px);
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2);
}

@keyframes electricBanner {
    0% {
        left: -100%;
    }
    100% {
        left: 120%;
    }
}

/* Effet de brillance au texte */
.shimmer-text {
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
}