        .blog-animate {
            position: relative;
            overflow: hidden;
            transform: translateY(50px) scale(0.95);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-radius: 12px;
        }
        
        .blog-animate.animated {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
        
        .single-blog-grid {
            margin-bottom: 30px;
            transition: all 0.5s ease;
        }
        
        /* Animation de l'image */
        .blog-img {
            position: relative;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
        }
        
        .blog-img img {
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            width: 100%;
            height: auto;
        }
        
        .hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(142, 68, 173, 0.7) 0%, rgba(155, 89, 182, 0.7) 100%);
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .hover-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .hover-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #ED1B53;
        }
        
        .blog-img:hover img {
            transform: scale(1.1);
        }
        
        .blog-img:hover .hover-overlay {
            opacity: 1;
        }
        
        .blog-img:hover .hover-content {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        /* Animation du contenu */
        .blog-content {
            padding: 25px;
            background: white;
            border-radius: 0 0 12px 12px;
            position: relative;
            z-index: 2;
        }
        
        .meta-info {
            margin-bottom: 15px;
        }
        
        .meta-info a {
            color: #777;
            font-size: 14px;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .meta-info a:hover {
            color: #ED1B53;
        }
        
        .blog-content h4 a {
            color: #333;
            font-weight: 600;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 15px;
        }
        
        .blog-content h4 a:hover {
            color: #ED1B53;
        }
        
        .blog-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .button .btn {
            background: #ED1B53;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .button .btn:hover {
            background: #9b59b6;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(155, 89, 182, 0.3);
        }
        
        /* Effet de particules */
        .blog-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        /* Éléments décoratifs animés */
        .blog-decorations {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .decor-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(142, 68, 173, 0.05);
            filter: blur(30px);
            animation: float 20s infinite ease-in-out;
        }
        
        .decor-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            left: -150px;
            animation-delay: 0s;
        }
        
        .decor-2 {
            width: 300px;
            height: 300px;
            bottom: 10%;
            right: -100px;
            animation-delay: 5s;
        }
        
        .decor-3 {
            width: 200px;
            height: 200px;
            top: 60%;
            left: 30%;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 20px) rotate(10deg); }
            50% { transform: translate(40px, -20px) rotate(-10deg); }
            75% { transform: translate(-20px, 30px) rotate(10deg); }
        }
        
        /* Effet de vague au survol */
        .single-blog-grid:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Animation du bouton */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(155, 89, 182, 0); }
            100% { box-shadow: 0 0 0 0 rgba(155, 89, 182, 0); }
        }
        
        .button .btn:hover {
            animation: pulse 1s;
        }
