.livestream-banner {
    position: fixed;
    left: 0; 
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    font-size: 16px;
    padding: 0 15px;
}

.livestream-banner.type-banner.position-top { top: 0; }
.livestream-banner.type-banner.position-bottom { bottom: 0; top: auto; }

/* Contenido centrado */
.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.banner-text {
    font-weight: 500;
    text-align: center;
}

/* Bot¨Žn CTA */
.banner-cta {
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Bot¨Žn Cerrar */
.banner-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.25);
    color: inherit;
    border: none;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.banner-close:hover {
    background: rgba(0,0,0,0.45);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .livestream-banner {
        font-size: 14.5px;
        padding: 0 12px;
    }
    
    .banner-content {
        gap: 15px;
        padding-right: 52px; /* espacio para X */
    }
    
    .banner-close {
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
    
    .banner-text {
        font-size: 14px;
    }
}

@media (min-width: 769px) {
    .banner-content {
        padding-right: 65px;
    }
}