   
    /* Animation GlamiFy premium */
    .glamify-responsive {
        background: linear-gradient(135deg, var(--color-1), var(--color-2), var(--color-1));
        background-size: 300% 300%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: 
            gradientFlow 5s ease infinite,
            textGlow 2s ease-in-out infinite alternate;
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
        line-height: 1.2;
    }
    
    .glamify-responsive::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--color-1), var(--color-2));
        transform: scaleX(0);
        transform-origin: right;
        animation: underlineExpand 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
    }
    
    @keyframes gradientFlow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    @keyframes textGlow {
        0% { text-shadow: 0 0 8px rgba(237, 27, 83, 0.4); }
        50% { text-shadow: 0 0 20px rgba(237, 27, 83, 0.7); }
        100% { text-shadow: 0 0 8px rgba(237, 27, 83, 0.4); }
    }
    
    @keyframes underlineExpand {
        from { transform: scaleX(0); transform-origin: right; }
        to { transform: scaleX(1); transform-origin: left; }
    }
    
    /* Bouton premium avec espace réduit */
    .hero-content .button {
        margin-top: 0 !important;
    }
    
    .hero-content p {
        margin-bottom: 15px !important;
    }
    
    .store-badge-premium {
        height: auto;
        max-height: 150px;
        width: auto;
        max-width: 240px;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.5);
        filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
    }
    
    .btn-premium {
        display: inline-block;
        animation: pulseScale 2.5s infinite ease-in-out;
    }
    
    .btn-premium:hover .store-badge-premium {
        transform: translateY(-10px) rotateX(20deg) scale(1.1);
        filter: drop-shadow(0 15px 25px rgba(237, 27, 83, 0.4));
        animation: none;
    }
    
    @keyframes pulseScale {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.08); }
    }
    
    /* Image flottante premium */
    .floating-premium {
        animation: float3d 8s ease-in-out infinite;
        transform-style: preserve-3d;
        position: relative;
        z-index: 3;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
    }
    
    @keyframes float3d {
        0%, 100% { 
            transform: translateY(0) rotateX(0deg) rotateY(0deg); 
        }
        25% { 
            transform: translateY(-20px) rotateX(5deg) rotateY(3deg); 
        }
        50% { 
            transform: translateY(0) rotateX(-2deg) rotateY(-2deg); 
        }
        75% { 
            transform: translateY(-15px) rotateX(-3deg) rotateY(4deg); 
        }
    }
    
    /* Particules premium (bulles) */
    .particles-premium {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    .particle {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(237,27,83,0));
        animation: particleOrbit linear infinite;
        will-change: transform;
    }
    
    /* Configuration des particules individuelles */
    .particle-1 {
        width: 180px; height: 180px;
        top: 10%; left: 15%;
        animation-duration: 25s;
        opacity: 0.15;
    }
    .particle-2 {
        width: 120px; height: 120px;
        bottom: 20%; right: 10%;
        animation-duration: 20s;
        opacity: 0.2;
    }
    .particle-3 {
        width: 80px; height: 80px;
        top: 40%; left: 70%;
        animation-duration: 18s;
        opacity: 0.25;
    }
    .particle-4 {
        width: 200px; height: 200px;
        bottom: 30%; left: 5%;
        animation-duration: 30s;
        opacity: 0.1;
    }
    .particle-5 {
        width: 60px; height: 60px;
        top: 20%; right: 20%;
        animation-duration: 15s;
        opacity: 0.3;
    }
    .particle-6 {
        width: 150px; height: 150px;
        bottom: 10%; left: 60%;
        animation-duration: 22s;
        opacity: 0.18;
    }
    .particle-7 {
        width: 90px; height: 90px;
        top: 70%; right: 30%;
        animation-duration: 17s;
        opacity: 0.22;
    }
    .particle-8 {
        width: 110px; height: 110px;
        top: 50%; left: 40%;
        animation-duration: 19s;
        opacity: 0.2;
    }
    
    @keyframes particleOrbit {
        0% {
            transform: translate(0, 0) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 0.3;
        }
        50% {
            opacity: 0.5;
        }
        90% {
            opacity: 0.1;
        }
        100% {
            transform: translate(100px, -100px) rotate(360deg);
            opacity: 0;
        }
    }
    
    /* Effet de lumière */
    .light-effect {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 70%);
        animation: lightRotation 30s linear infinite;
        z-index: 1;
    }
    
    @keyframes lightRotation {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Responsive */
    @media (max-width: 991px) {
        .hero-image {
            margin-top: 40px;
        }
        .store-badge-premium {
            max-height: 120px;
            max-width: 200px;
        }
    }
    
    @media (max-width: 767px) {
        .glamify-responsive {
            font-size: 2.5rem;
            white-space: normal;
        }
        
        .hero-content {
            text-align: center;
        }
        
        .hero-content p {
            margin-bottom: 10px !important;
        }
        
        .button {
            margin-top: 5px !important;
        }
        
        .store-badge-premium {
            max-height: 100px;
            max-width: 180px;
        }
        
        .particle {
            width: 60px !important;
            height: 60px !important;
        }
    }
     .glamify-responsive {
    background: linear-gradient(135deg, var(--color-1), var(--color-2), var(--color-1));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: 
        gradientFlow 5s ease infinite,
        textGlow 2s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    line-height: 1.2;
    white-space: nowrap;
}

.glamify-responsive::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    transform: scaleX(0);
    transform-origin: right;
    animation: underlineExpand 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
}

/* Particules premium (bulles) */
.particles-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(237,27,83,0));
    animation: particleOrbit linear infinite;
    will-change: transform;
}

/* Configuration responsive des particules */
@media (max-width: 767px) {
    .particle {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Ajustements responsive globaux */
@media (max-width: 767px) {
    .hero-content {
        padding-top: 20px;
        text-align: center;
    }
    
    .glamify-responsive {
        font-size: 2.5rem;
        white-space: normal;
        display: inline;
        line-height: 1.3;
    }
    
    h1 {
        margin: 10px 0 !important;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .store-badge-premium {
        max-height: 100px;
        margin: 0 auto;
    }
}
    /* Animation GlamiFy premium */
    .glamify-premium {
        background: linear-gradient(135deg, var(--color-1), var(--color-2), var(--color-1));
        background-size: 300% 300%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: 
            gradientFlow 5s ease infinite,
            textGlow 2s ease-in-out infinite alternate,
            subtleVibration 3s ease-in-out infinite;
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
    }
    
    .glamify-premium::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--color-1), var(--color-2));
        transform: scaleX(0);
        transform-origin: right;
        animation: underlineExpand 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
    }
    
    @keyframes gradientFlow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    @keyframes textGlow {
        0% { text-shadow: 0 0 8px rgba(237, 27, 83, 0.4); }
        50% { text-shadow: 0 0 20px rgba(237, 27, 83, 0.7); }
        100% { text-shadow: 0 0 8px rgba(237, 27, 83, 0.4); }
    }
    
    @keyframes subtleVibration {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-2px); }
        75% { transform: translateX(2px); }
    }
    
    @keyframes underlineExpand {
        from { transform: scaleX(0); transform-origin: right; }
        to { transform: scaleX(1); transform-origin: left; }
    }
    
    /* Bouton premium */
    .store-badge-premium {
        height: auto;
        max-height: 150px;
        width: auto;
        max-width: 240px;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.5);
        filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
    }
    
    .btn-premium {
        display: inline-block;
        animation: pulseScale 2.5s infinite ease-in-out;
    }
    
    .btn-premium:hover .store-badge-premium {
        transform: translateY(-10px) rotateX(20deg) scale(1.1);
        filter: drop-shadow(0 15px 25px rgba(237, 27, 83, 0.4));
        animation: none;
    }
    
    @keyframes pulseScale {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.08); }
    }
    
    /* Image flottante premium */
    .floating-premium {
        animation: float3d 8s ease-in-out infinite;
        transform-style: preserve-3d;
        position: relative;
        z-index: 3;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
    }
    
    @keyframes float3d {
        0%, 100% { 
            transform: translateY(0) rotateX(0deg) rotateY(0deg); 
        }
        25% { 
            transform: translateY(-20px) rotateX(5deg) rotateY(3deg); 
        }
        50% { 
            transform: translateY(0) rotateX(-2deg) rotateY(-2deg); 
        }
        75% { 
            transform: translateY(-15px) rotateX(-3deg) rotateY(4deg); 
        }
    }
    
    /* Particules premium */
    .particles-premium {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    .particle {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(237,27,83,0));
        animation: particleOrbit linear infinite;
        will-change: transform;
    }
    
    /* Configuration des particules individuelles */
    .particle-1 {
        width: 180px; height: 180px;
        top: 10%; left: 15%;
        animation-duration: 25s;
        opacity: 0.15;
    }
    .particle-2 {
        width: 120px; height: 120px;
        bottom: 20%; right: 10%;
        animation-duration: 20s;
        opacity: 0.2;
    }
    .particle-3 {
        width: 80px; height: 80px;
        top: 40%; left: 70%;
        animation-duration: 18s;
        opacity: 0.25;
    }
    .particle-4 {
        width: 200px; height: 200px;
        bottom: 30%; left: 5%;
        animation-duration: 30s;
        opacity: 0.1;
    }
    .particle-5 {
        width: 60px; height: 60px;
        top: 20%; right: 20%;
        animation-duration: 15s;
        opacity: 0.3;
    }
    .particle-6 {
        width: 150px; height: 150px;
        bottom: 10%; left: 60%;
        animation-duration: 22s;
        opacity: 0.18;
    }
    .particle-7 {
        width: 90px; height: 90px;
        top: 70%; right: 30%;
        animation-duration: 17s;
        opacity: 0.22;
    }
    .particle-8 {
        width: 110px; height: 110px;
        top: 50%; left: 40%;
        animation-duration: 19s;
        opacity: 0.2;
    }
    
    @keyframes particleOrbit {
        0% {
            transform: translate(0, 0) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 0.3;
        }
        50% {
            opacity: 0.5;
        }
        90% {
            opacity: 0.1;
        }
        100% {
            transform: translate(100px, -100px) rotate(360deg);
            opacity: 0;
        }
    }
    
    /* Effet de lumière */
    .light-effect {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 70%);
        animation: lightRotation 30s linear infinite;
        z-index: 1;
    }
    
    @keyframes lightRotation {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Responsive */
    @media (max-width: 991px) {
        .hero-image {
            margin-top: 40px;
        }
        .store-badge-premium {
            max-height: 120px;
            max-width: 200px;
        }
    }
    
    @media (max-width: 767px) {
        .glamify-premium {
            font-size: 2.8rem;
        }
        .store-badge-premium {
            max-height: 100px;
            max-width: 180px;
        }
        .particle {
            width: 50% !important;
            height: 50% !important;
        }
    }
