/*==================================================
COMPONENT: GLOBAL CHANNELS BANNER
==================================================*/

.sidv-channels-banner {
    width: 100%;
    padding: 1.25rem 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidv-channels-banner.is-ready {
    opacity: 1;
    transform: translateY(0);
}

/*==================================================
LINK & CONTAINER
==================================================*/

.sidv-channels-banner__container {
    display: flex;
    justify-content: center;
}

.sidv-channels-banner__link {
    display: block;
    width: 100%;
    text-decoration: none;
    outline: none;
}

.sidv-channels-banner__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--sidv-color-primary, #0D2137) 0%, #16385C 70%, var(--sidv-color-accent, #FF9800) 100%);
    border: 2px solid var(--sidv-color-accent, #FF9800);
    border-radius: var(--sidv-radius-xl, 16px);
    box-shadow: 0 10px 25px -5px rgba(13, 33, 55, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

/* Flash de brillo al pasar el cursor */
.sidv-channels-banner__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.sidv-channels-banner__link:hover .sidv-channels-banner__wrapper {
    transform: translateY(-3px) scale(1.008);
    box-shadow: 0 16px 32px -6px rgba(13, 33, 55, 0.45), 0 0 20px rgba(255, 152, 0, 0.4);
    border-color: #FFC107;
}

.sidv-channels-banner__link:hover .sidv-channels-banner__wrapper::before {
    left: 100%;
}

.sidv-channels-banner__link:focus-visible .sidv-channels-banner__wrapper {
    outline: 3px solid #FFC107;
    outline-offset: 3px;
}

/*==================================================
TYPOGRAPHY & 3D RELIEF
==================================================*/

.sidv-channels-banner__title {
    color: #FFFFFF;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-shadow: 
        2px 2px 0px var(--sidv-color-primary, #0D2137),
        3px 3px 8px rgba(0, 0, 0, 0.6);
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.sidv-channels-banner__link:hover .sidv-channels-banner__title {
    color: #FFC107;
    text-shadow: 
        2px 2px 0px #000000,
        0 0 14px rgba(255, 193, 7, 0.6);
}

/*==================================================
ICON BADGE & ANIMATION
==================================================*/

.sidv-channels-banner__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--sidv-color-accent, #FF9800);
    color: var(--sidv-color-primary, #0D2137);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease;
}

.sidv-channels-banner__icon {
    width: 24px;
    height: 24px;
}

.sidv-channels-banner__link:hover .sidv-channels-banner__icon-wrap {
    transform: scale(1.15) rotate(-10deg);
    background-color: #FFC107;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 768px) {
    .sidv-channels-banner {
        padding: 0.85rem 0;
    }

    .sidv-channels-banner__wrapper {
        padding: 0.85rem 1.25rem;
        gap: 0.85rem;
        border-radius: var(--sidv-radius-lg, 12px);
    }

    .sidv-channels-banner__title {
        font-size: 1.2rem;
    }

    .sidv-channels-banner__icon-wrap {
        width: 36px;
        height: 36px;
    }

    .sidv-channels-banner__icon {
        width: 20px;
        height: 20px;
    }
}