
    /* Styles améliorés sans affecter Owl Carousel */
    .hero-carousel-container {
        margin-top: 50px;
        position: relative;
        z-index: 0;
    }
    
    .hero-carousel .item {
        height: 250px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .hero-carousel .bg-coloring {
        background: linear-gradient(135deg, #2c3e50, #4ca1af);
    }
    
    .hero-carousel .heder-el {
        transition: transform 0.3s ease;
    }
    
    .hero-carousel .heder-el:hover {
        transform: scale(1.02);
    }
    
    .service-carousel .item {
        padding: 10px;
    }
    
    .service-card {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 10px;
        padding-left: 20px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    }
    
    .service-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
        text-align: center;
    }
    
    .division-btn {
        display: block;
        width: 50px;
        margin: 0 auto 15px;
        opacity: 0.7;
    }
    
    .action-btn {
        border: 2px solid white;
        border-radius: 50px;
        padding: 10px 15px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        margin: 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 160px;
    }
    
    .action-btn i {
        margin-right: 8px;
    }
    
    .action-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .btn-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
    }
    
    .btn-telegram {
        background: linear-gradient(135deg, #0088cc, #00aced);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 230px;
    }
    
    .btn-matches {
        background: white;
        color: #2c3e50;
        width: 230px;
    }
    
    .footer-bk {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .footer-bk div {
        width: 120px;
        height: 80px;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        padding: 10px;
    }
    
    .footer-bk div:hover {
        transform: scale(1.05);
    }
    
    .footer-bk img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
    
    .promo-banner {
        background: linear-gradient(135deg, #f39c12, #e74c3c);
        color: white;
        padding: 15px;
        border-radius: 10px;
        font-weight: 700;
        text-align: center;
        max-width: 300px;
        margin: 30px auto;
        box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.03); }
        100% { transform: scale(1); }
    }
    
    .logo-display {
        background: white;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        max-width: 240px;
        margin: 30px auto;
        transition: all 0.3s ease;
    }
    
    .logo-display:hover {
        transform: rotate(-2deg);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-carousel .item {
            height: 200px;
        }
        
        .action-btn {
            min-width: 140px;
            padding: 8px 12px;
            font-size: 0.8rem;
        }
        
        .footer-bk div {
            width: 100px;
            height: 70px;
        }
    }

    /* Ajouts pour compléter le CSS */
#post_sponsor {
    background: transparent;
}

#post_sponsor_loading {
    margin-bottom: 0px;
}

.owl-carousel .owl-stage-outer {
    border-radius: 15px;
}

.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-theme .owl-nav [class*='owl-'] {
    background: rgba(255,255,255,0.3) !important;
    color: #fff !important;
    font-size: 2rem !important;
    margin: 0 !important;
    padding: 0 15px !important;
    border-radius: 0 !important;
    position: absolute;
}

.owl-theme .owl-nav .owl-prev {
    left: 0;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.owl-theme .owl-nav .owl-next {
    right: 0;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.5) !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #fff !important;
}

.container.text-center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.xbtn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.xbtn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.xbtn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-danger {
    background: linear-gradient(135deg, #ce1126, #8b0000);
}

.btn-green {
    background: linear-gradient(135deg, #008000, #006400);
}

.btn-dark {
    background: linear-gradient(135deg, #2c3e50, #1a1a1a);
}

.btn-light {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #333 !important;
}

.rounded-btn {
    border-radius: 50px !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

/* Correction pour les éléments spécifiques */
.promo-badge {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
    margin: 30px auto;
    max-width: 350px;
    animation: pulse 2s infinite;
}

.logo-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    max-width: 240px;
    margin: 30px auto;
    transition: all 0.3s ease;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-logo {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 10px;
        border-top: 4px solid;
    border-image: linear-gradient(90deg, #2c3e50 0%, #4ca1af 50%, #008000 100%);
    border-image-slice: 1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border: 2px solid #4ca1af;
    animation: borderPulse 2s infinite;
    border-radius: 10px;
}

@keyframes borderPulse {
        0% {
            border-color: #4ca1af;
            box-shadow: 0 0 0 0 rgba(76,161,175,0.4);
        }
        50% {
            border-color: #f39c12;
            box-shadow: 0 0 12px 4px rgba(243,156,18,0.25);
        }
        100% {
            border-color: #4ca1af;
            box-shadow: 0 0 0 0 rgba(76,161,175,0.4);
        }
}

/* Styles pour les icônes */
.far, .fas {
    font-size: 1.1em;
}

/* Ajustements responsive supplémentaires */
@media (max-width: 576px) {
    .hero-carousel .item {
        height: 180px !important;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .action-btn {
        min-width: 120px !important;
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .btn-container {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-telegram, .btn-matches {
        width: 100% !important;
        max-width: 230px;
    }
    
    .promo-badge {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .logo-container {
        max-width: 200px;
        padding: 15px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #action1_list .owl-pagination {
        margin-top: -10px;
    }
}

/* Animation supplémentaire pour l'engagement */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.logo-container:hover {
    animation: float 3s ease-in-out infinite;
}
