/* --- Boutons de Réseaux Sociaux dans le Hero --- */
.hero-channels {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-channel {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
}

.btn-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-telegram {
    background: #0088cc;
}

/* --- Section Publicitaire Code Promo Melbet --- */
.promo-banner-box {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); /* Fond ambré/jaune doux festif */
    border: 2px dashed #f59e0b; /* Bordure en pointillés style coupon de réduction */
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.promo-content {
    flex: 1;
    text-align: left;
}

.promo-badge {
    background: #d97706;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.promo-content h3 {
    margin: 8px 0 5px 0;
    font-size: 1.3rem;
    color: #78350f;
    font-weight: 800;
}

.promo-content p {
    margin: 0;
    color: #92400e;
    font-size: 0.95rem;
}

.promo-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.promo-code-display {
    background: #ffffff;
    border: 1px solid #f59e0b;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #78350f;
}

.promo-code-display strong {
    color: #b45309;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.btn-promo-go {
    background: #78350f;
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    transition: background 0.2s ease;
}

.btn-promo-go:hover {
    background: #451a03;
}

/* --- Responsive Bannière Publicitaire --- */
@media (max-width: 768px) {
    .promo-banner-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .promo-content {
        text-align: center;
    }
    .promo-action {
        width: 100%;
    }
}