/* WhatsApp Channel Promo - Clean & Optimized Styles */

.wa-channel-promo-wrapper {
    margin: 30px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    clear: both;
}

.wa-channel-promo-box {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 16px;
    padding: 25px 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wa-channel-promo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wa-channel-promo-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.wa-channel-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.wa-channel-content {
    flex: 1;
    color: #ffffff;
}

.wa-channel-title {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.wa-channel-name {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.wa-channel-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #25D366;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.wa-channel-button:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #128C7E;
}

.wa-channel-button:active {
    transform: scale(0.98);
}

#wa-button-text {
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 600px) {
    .wa-channel-promo-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .wa-channel-icon {
        width: 50px;
        height: 50px;
    }

    .wa-channel-icon svg {
        width: 32px;
        height: 32px;
    }

    .wa-channel-name {
        font-size: 18px;
    }

    .wa-channel-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Prevent ad injection into button */
.wa-channel-button,
.wa-channel-button * {
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.wa-channel-promo-box ins,
.wa-channel-promo-box iframe,
.wa-channel-promo-box .adsbygoogle {
    display: none !important;
    visibility: hidden !important;
}
