/* ==========================================
   Enhanced Design - More Unique & Beautiful
   ========================================== */

/* --- Cinematic Gradient Overlays & Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(213, 0, 85, 0.3); }
    50% { box-shadow: 0 0 25px rgba(213, 0, 85, 0.6); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.3; }
    100% { transform: scale(0.95); opacity: 0.7; }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Section Divider --- */
.section-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(213, 0, 85, 0.4), rgba(213, 0, 85, 0.8), rgba(213, 0, 85, 0.4), transparent);
    margin: 0 72px;
    border: none;
}
.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(213, 0, 85, 0.6);
}

/* --- Section Background Variants --- */
.section-dark {
    background: #000;
}
.section-darker {
    background: #0a0a0a;
}
.section-gradient {
    background: radial-gradient(ellipse at 50% 0%, rgba(213, 0, 85, 0.06) 0%, transparent 70%);
}

/* --- Existing blogCard and channel card fallbacks --- */
.blogCard {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blogCard:hover {
    transform: translateY(-4px);
}
.blogCard .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 4px 14px;
    border-radius: 50px !important;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--color-primary), #ff6b9d) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(213, 0, 85, 0.3);
}
.blogCard:hover .blogCard__thumb img {
    transform: scale(1.08);
}
.blogCard .blogCard__content .blogCard__meta a,
.blogCard .blogCard__content .blogCard__meta span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.blogCard .blogCard__content .blogCard__meta a:hover {
    color: var(--color-primary);
}
.channel__card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.channel__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(213, 0, 85, 0.15);
}
.channel__card .card__thumb img {
    transition: transform 0.4s ease;
}
.channel__card:hover .card__thumb img {
    transform: scale(1.05);
}

/* --- Existing series card fallbacks --- */
.series__card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.series__card:hover {
    transform: translateY(-4px);
}
.series__card .card__thumb img {
    transition: transform 0.6s ease;
}
.series__card:hover .card__thumb img {
    transform: scale(1.05);
}
.series__card .badge {
    z-index: 3;
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.series__card .badge.bg-purple {
    background: rgba(108, 52, 195, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
}
.series__card .badge:not(.bg-purple) {
    background: linear-gradient(135deg, #D50055, #ff6b9d) !important;
    box-shadow: 0 4px 15px rgba(213, 0, 85, 0.3);
    color: #fff !important;
}
.artist__card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.artist__card:hover {
    transform: translateY(-6px);
}
.artist__card .card__thumb img {
    transition: transform 0.6s ease;
}
.artist__card:hover .card__thumb img {
    transform: scale(1.08);
}
.artist__card .card__content {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}
.feature__section {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.feature__section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.feature__section > .container-fluid {
    position: relative;
    z-index: 2;
}

/* --- Global enhanced fallbacks for existing selectors --- */
.video__card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video__card:hover {
    transform: translateY(-8px);
}
.video__card .badge {
    z-index: 2;
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 6px !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.video__card .badge.bg-purple {
    background: rgba(108, 52, 195, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
}
.video__card .badge:not(.bg-purple) {
    background: linear-gradient(135deg, #D50055, #ff6b9d) !important;
    box-shadow: 0 4px 15px rgba(213, 0, 85, 0.3);
    color: #fff !important;
}
.video__card .video__thumb img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.video__card:hover .video__thumb img {
    transform: scale(1.08) !important;
}
.video__card .video__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
}
.video__card:hover .video__thumb::before {
    opacity: 1;
}
.video__card .video__btn {
    width: 50px !important;
    height: 50px !important;
    background: rgba(213, 0, 85, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 30px rgba(213, 0, 85, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform: translate(-50%, -50%) scale(0) !important;
}
.video__card:hover .video__btn {
    transform: translate(-50%, -50%) scale(1) !important;
}
.video__card .video__btn::after {
    display: none !important;
}
.video__card .video__content {
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%) !important;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    border-radius: 0 0 12px 12px;
    width: 100% !important;
    visibility: visible !important;
}
.video__card:hover .video__content {
    transform: translateY(0);
    opacity: 1;
}
.video__card .video__content .title {
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.video__card .video__content .content__right .action__btn a {
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}
.video__card .video__content .content__right .action__btn a:hover {
    background: var(--color-primary);
}
.swiper__navigation .swiper-button-next,
.swiper__navigation .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
}
.swiper__navigation .swiper-button-next:hover,
.swiper__navigation .swiper-button-prev:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(213, 0, 85, 0.3);
}
.section__title .title {
    font-size: 27.29px;
    background: linear-gradient(135deg, #fff 60%, rgba(213, 0, 85, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Enhanced Section Titles --- */
.section__title-enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
}
.section__title-enhanced .title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.section__title-enhanced .title-accent {
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, var(--color-primary), rgba(213, 0, 85, 0.3));
    border-radius: 2px;
    flex-shrink: 0;
}
.section__title-enhanced .title-glow {
    width: 4px;
    height: 28px;
    background: var(--color-primary);
    border-radius: 2px;
    filter: blur(4px);
    margin-left: -18px;
    flex-shrink: 0;
}
.section__title-enhanced .title {
    font-family: var(--font-roboto);
    font-size: 27.29px;
    font-weight: var(--font-semibold);
    line-height: 25.01px;
    color: var(--color-white);
    margin-bottom: 0;
    text-transform: capitalize;
    background: linear-gradient(135deg, #fff 60%, rgba(213, 0, 85, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section__title-enhanced .view__btn {
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: var(--font-regular);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.section__title-enhanced .view__btn:hover {
    color: var(--color-primary);
    gap: 10px;
}
.section__title-enhanced .view__btn a {
    color: currentColor;
}
.section__title-enhanced .view__btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.section__title-enhanced .view__btn:hover i {
    transform: translateX(3px);
}

/* --- Enhanced Banner --- */
.banner__sliderSection {
    position: relative;
}
.banner__sliderSection::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
.banner__sliderSection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
.banner__video {
    position: relative;
    overflow: hidden;
}
.banner__video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.banner__video .cinematic-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(213, 0, 85, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}
.banner__video .cinematic-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}
.bannerSlide__wrapper {
    position: relative;
    z-index: 3;
}
.hero__text-enhanced {
    position: relative;
    z-index: 3;
}
.hero__text-enhanced .floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(213, 0, 85, 0.15);
    border: 1px solid rgba(213, 0, 85, 0.3);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}
.hero__text-enhanced .floating-badge .dot {
    width: 6px;
    height: 6px;
    background: #20D86C;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}
.hero__text-enhanced .title {
    font-family: var(--font-default);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin: 10px 0 16px;
    letter-spacing: -1px;
}
.hero__text-enhanced .title .highlight {
    background: linear-gradient(135deg, var(--color-primary), #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__text-enhanced .desc {
    font-size: 16px;
    line-height: 28px;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin-bottom: 0;
}
.hero__text-enhanced .video__meta-enhanced {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.hero__text-enhanced .video__meta-enhanced .meta__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}
.hero__text-enhanced .video__meta-enhanced .meta__item i {
    font-size: 18px;
    color: var(--color-primary);
}
.hero__text-enhanced .video__meta-enhanced .meta__item .imdb-stars {
    color: #FFC526;
}
.hero__text-enhanced .video__meta-enhanced .meta__item .rating-badge {
    background: rgba(255, 197, 38, 0.15);
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600;
    color: #FFC526;
}
.hero__text-enhanced .btn__group-enhanced {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.hero__text-enhanced .btn__group-enhanced .btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.hero__text-enhanced .btn__group-enhanced .btn-watch::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}
.hero__text-enhanced .btn__group-enhanced .btn-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(213, 0, 85, 0.4);
}
.hero__text-enhanced .btn__group-enhanced .btn-secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.hero__text-enhanced .btn__group-enhanced .btn-secondary-action:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* --- Banner Mini Info Card --- */
.banner-mini-info {
    position: absolute;
    right: 80px;
    bottom: 120px;
    z-index: 5;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 200px;
    animation: fade-in-up 0.6s ease-out;
}
.banner-mini-info .info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}
.banner-mini-info .info-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.banner-mini-info .info-stats .stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.banner-mini-info .info-stats .stat .stat-value {
    color: var(--color-primary);
    font-weight: 600;
}

/* --- Enhanced Genre Pills --- */
.category__item-enhanced {
    position: relative;
}
.category__item-enhanced a {
    font-family: var(--font-roboto);
    font-size: 14px;
    font-weight: var(--font-regular);
    color: rgba(255,255,255,0.8);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}
.category__item-enhanced a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary), #ff6b9d);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}
.category__item-enhanced a:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 0, 85, 0.3);
}
.category__item-enhanced a:hover::before {
    opacity: 1;
}
.category__item-enhanced a span {
    position: relative;
    z-index: 1;
}

/* --- Enhanced Video Cards --- */
.video__card-enhanced {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video__card-enhanced:hover {
    transform: translateY(-8px);
}
.video__card-enhanced .video__thumb {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.video__card-enhanced .video__thumb img {
    width: 100%;
    display: block;
    border-radius: 12px;
    aspect-ratio: 2.85/4;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video__card-enhanced:hover .video__thumb img {
    transform: scale(1.08);
}
.video__card-enhanced .video__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.video__card-enhanced:hover .video__thumb::before {
    opacity: 1;
}
.video__card-enhanced .video__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, var(--color-primary), transparent, var(--color-primary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.video__card-enhanced:hover .video__thumb::after {
    opacity: 1;
}
.video__card-enhanced .video__btn {
    width: 50px;
    height: 50px;
    background: rgba(213, 0, 85, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 3;
    color: #fff;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 30px rgba(213, 0, 85, 0.4);
}
.video__card-enhanced:hover .video__btn {
    transform: translate(-50%, -50%) scale(1);
}
.video__card-enhanced .badge-enhanced {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}
.video__card-enhanced .badge-enhanced.premium {
    background: linear-gradient(135deg, #D50055, #ff6b9d);
    color: #fff;
    box-shadow: 0 4px 15px rgba(213, 0, 85, 0.3);
}
.video__card-enhanced .badge-enhanced.rental {
    background: rgba(108, 52, 195, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}
.video__card-enhanced .badge-enhanced.free {
    background: rgba(32, 216, 108, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
}
.video__card-enhanced .video__content-enhanced {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 0 12px 12px;
}
.video__card-enhanced:hover .video__content-enhanced {
    transform: translateY(0);
    opacity: 1;
}
.video__card-enhanced .video__content-enhanced .title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.video__card-enhanced .video__content-enhanced .meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.video__card-enhanced .video__content-enhanced .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.video__card-enhanced .video__content-enhanced .meta span i {
    color: var(--color-primary);
    font-size: 13px;
}

/* --- Enhanced Series Grid --- */
.grid-4-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.series__card-enhanced {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.series__card-enhanced.featured {
    grid-column: 1/3;
    grid-row: 1/3;
}
.series__card-enhanced:hover {
    transform: translateY(-4px);
}
.series__card-enhanced .card__thumb {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.series__card-enhanced .card__thumb img {
    width: 100%;
    display: block;
    aspect-ratio: 3.75/3;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 12px;
}
.series__card-enhanced.featured .card__thumb img {
    aspect-ratio: auto;
    height: 100%;
}
.series__card-enhanced:hover .card__thumb img {
    transform: scale(1.05);
}
.series__card-enhanced .card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
    border-radius: 12px;
}
.series__card-enhanced .card__content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}
.series__card-enhanced .card__content .title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.series__card-enhanced .card__content .desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}
.series__card-enhanced .badge-enhanced {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
}
.series__card-enhanced .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(213, 0, 85, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 0 40px rgba(213, 0, 85, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.series__card-enhanced:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1);
}

/* --- Enhanced Feature Section --- */
.feature__section-enhanced {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    overflow: hidden;
}
.feature__section-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.feature__section-enhanced > .container-fluid {
    position: relative;
    z-index: 2;
}
.feature__wrapper-enhanced {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.3);
    max-width: 472px;
    width: 100%;
    margin: auto;
    overflow: hidden;
}
.feature__wrapper-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--color-primary), transparent, var(--color-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: gradient-shift 4s ease infinite;
    background-size: 200% 200%;
}
.feature__wrapper-enhanced .badge-enhanced {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.feature__wrapper-enhanced .subtitle {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.feature__wrapper-enhanced .title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}
.feature__wrapper-enhanced .season {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.feature__wrapper-enhanced .btn-watch-feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.feature__wrapper-enhanced .btn-watch-feature:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(213, 0, 85, 0.3);
}

/* --- Enhanced Artist Cards --- */
.artist__card-enhanced {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.artist__card-enhanced:hover {
    transform: translateY(-6px);
}
.artist__card-enhanced .card__thumb {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.artist__card-enhanced .card__thumb img {
    width: 100%;
    display: block;
    aspect-ratio: 2.43/2.83;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
    border-radius: 12px;
}
.artist__card-enhanced:hover .card__thumb img {
    transform: scale(1.08);
}
.artist__card-enhanced .card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    z-index: 1;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.artist__card-enhanced:hover .card__thumb::after {
    opacity: 1;
}
.artist__card-enhanced .card__content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    text-align: center;
    transform: translateY(5px);
    transition: all 0.4s ease;
}
.artist__card-enhanced:hover .card__content {
    transform: translateY(0);
}
.artist__card-enhanced .card__content .title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.artist__card-enhanced .card__content .role-badge {
    display: inline-block;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    padding: 2px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
}

/* --- Enhanced Channel Cards --- */
.channel__card-enhanced {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.channel__card-enhanced:hover {
    border-color: rgba(213, 0, 85, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(213, 0, 85, 0.15);
}
.channel__card-enhanced .card__thumb {
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}
.channel__card-enhanced .card__thumb img {
    width: 100%;
    display: block;
    aspect-ratio: 2.80/2.25;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.4s ease;
}
.channel__card-enhanced:hover .card__thumb img {
    transform: scale(1.05);
}
.channel__card-enhanced .channel-live-indicator {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(213, 0, 85, 0.9);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.channel__card-enhanced .channel-live-indicator .live-dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

/* --- Enhanced Blog Cards --- */
.blogCard-enhanced {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blogCard-enhanced:hover {
    transform: translateY(-4px);
}
.blogCard-enhanced .badge-enhanced {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--color-primary), #ff6b9d);
    color: #fff;
    box-shadow: 0 4px 15px rgba(213, 0, 85, 0.3);
}
.blogCard-enhanced .blogCard__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 260px;
}
.blogCard-enhanced .blogCard__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 12px;
}
.blogCard-enhanced:hover .blogCard__thumb img {
    transform: scale(1.08);
}
.blogCard-enhanced .blogCard__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    z-index: 1;
    border-radius: 12px;
}
.blogCard-enhanced .blogCard__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}
.blogCard-enhanced .blogCard__content .title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blogCard-enhanced .blogCard__content .title a {
    color: currentColor;
    transition: color 0.3s ease;
}
.blogCard-enhanced .blogCard__content .title a:hover {
    color: var(--color-primary);
}
.blogCard-enhanced .blogCard__content .desc {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.blogCard-enhanced .blogCard__content .meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.blogCard-enhanced .blogCard__content .meta span,
.blogCard-enhanced .blogCard__content .meta a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}
.blogCard-enhanced .blogCard__content .meta a:hover {
    color: var(--color-primary);
}

/* --- Enhanced Continue Watching --- */
.continue-watching-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.continue-watching-card:hover {
    transform: translateY(-4px);
}
.continue-watching-card .video__thumb {
    border-radius: 12px;
    overflow: hidden;
}
.continue-watching-card .video__thumb img {
    width: 100%;
    display: block;
    aspect-ratio: 2.85/4;
    border-radius: 12px;
    transition: transform 0.6s ease;
}
.continue-watching-card:hover .video__thumb img {
    transform: scale(1.05);
}
.continue-watching-card .progress-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 2;
    border-radius: 0 0 12px 12px;
}
.continue-watching-card .progress-overlay .title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.continue-watching-card .progress-overlay .progress-bar-custom {
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.continue-watching-card .progress-overlay .progress-bar-custom .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #ff6b9d);
    border-radius: 2px;
    transition: width 0.6s ease;
}

/* --- Swiper Navigation Enhanced --- */
.swiper__navigation-enhanced {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    pointer-events: none;
}
.swiper__navigation-enhanced .swiper-button-next,
.swiper__navigation-enhanced .swiper-button-prev {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
}
.swiper__navigation-enhanced .swiper-button-next:hover,
.swiper__navigation-enhanced .swiper-button-prev:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(213, 0, 85, 0.3);
}
.swiper__navigation-enhanced .swiper-button-next {
    right: -12px;
    left: auto;
}
.swiper__navigation-enhanced .swiper-button-prev {
    left: -12px;
}
.swiper__navigation-enhanced .swiper-button-next::after,
.swiper__navigation-enhanced .swiper-button-prev::after {
    display: none;
}

/* --- Glass Card Utility --- */
.glass-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}

/* --- Scroll-triggered fade-in animation (optional, subtle) --- */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Responsive Tweaks --- */
@media (max-width: 991px) {
    .section-divider {
        margin: 0 15px;
    }
    .hero__text-enhanced .title {
        font-size: 42px;
    }
    .banner-mini-info {
        display: none;
    }
    .section__title-enhanced .title {
        font-size: 22px;
    }
    .feature__wrapper-enhanced .title {
        font-size: 32px;
    }
    .grid-4-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    .series__card-enhanced.featured {
        grid-column: 1/-1;
        grid-row: auto;
    }
}
@media (max-width: 575px) {
    .hero__text-enhanced .title {
        font-size: 32px;
    }
    .hero__text-enhanced .btn__group-enhanced {
        flex-direction: column;
        align-items: stretch;
    }
    .hero__text-enhanced .btn__group-enhanced .btn-watch,
    .hero__text-enhanced .btn__group-enhanced .btn-secondary-action {
        justify-content: center;
    }
    .grid-4-enhanced {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Enhanced Header Design - Unique & Attractive
   ========================================== */

/* --- Animated gradient bottom border for header --- */
.header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 15%, #ff6b9d 30%, var(--color-primary) 50%, #ff6b9d 70%, var(--color-primary) 85%, transparent 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.header.nav-bg::after {
    opacity: 0.6;
    animation: gradient-shift 6s ease infinite;
}

/* --- Glass-morphism header on scroll (replaces solid dark) --- */
.header.nav-bg {
    background: rgba(13, 13, 13, 0.75) !important;
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Logo subtle glow on hover --- */
.header__wrapper .header__logo {
    position: relative;
}
.header__wrapper .header__logo::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(213, 0, 85, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
}
.header:hover .header__wrapper .header__logo::after {
    opacity: 1;
}
.header__wrapper .header__logo img {
    position: relative;
    z-index: 1;
    transition: filter 0.4s ease;
}
.header:hover .header__wrapper .header__logo img {
    filter: drop-shadow(0 0 12px rgba(213, 0, 85, 0.3));
}

/* --- Nav items: pill hover with animated background --- */
.header__wrapper .header__menu .main__menu li a {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, background 0.3s ease;
}
.header__wrapper .header__menu .main__menu li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(213, 0, 85, 0.12), rgba(255, 107, 107, 0.06));
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__wrapper .header__menu .main__menu li a:hover::before,
.header__wrapper .header__menu .main__menu li a.active::before {
    opacity: 1;
    transform: scale(1);
}
.header__wrapper .header__menu .main__menu li a:hover,
.header__wrapper .header__menu .main__menu li:hover > a {
    background: transparent !important;
}

/* --- Active nav item: glowing dot indicator --- */
.header__wrapper .header__menu .main__menu > li > a.active::after,
.header__wrapper .header__menu .main__menu > li.active > a::after {
    content: '' !important;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(213, 0, 85, 0.8), 0 0 20px rgba(213, 0, 85, 0.4);
    animation: pulse-ring 2s infinite;
}

/* --- Dropdown menus: glass-morphism with border glow --- */
.header__wrapper .header__menu .main__menu li .sub__menu {
    background: rgba(20, 20, 20, 0.85) !important;
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(0px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.header__wrapper .header__menu .main__menu li:hover .sub__menu {
    transform: translateY(4px);
}
.header__wrapper .header__menu .main__menu li .sub__menu::after {
    border-bottom-color: rgba(20, 20, 20, 0.9) !important;
}
.header__wrapper .header__menu .main__menu li .sub__menu li a {
    position: relative;
    padding-left: 28px;
    transition: all 0.2s ease;
}
.header__wrapper .header__menu .main__menu li .sub__menu li a::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.header__wrapper .header__menu .main__menu li .sub__menu li a:hover::before {
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(213, 0, 85, 0.6);
}

/* --- Search trigger: enhanced with pulse ring --- */
.search-btn-trigger {
    position: relative;
}
.search-btn-trigger::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(213, 0, 85, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-btn-trigger:hover::after {
    opacity: 1;
    animation: pulse-ring 2s infinite;
}

/* --- Search popup: glass-morphism with animation --- */
.search-popup-form.active {
    transform: translateY(-50%) scale(1);
}
.search-popup-form .form-control {
    background: rgba(20, 20, 20, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1.5px solid rgba(213, 0, 85, 0.5) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(213, 0, 85, 0.1) !important;
    transition: all 0.3s ease !important;
}
.search-popup-form .form-control:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(213, 0, 85, 0.2) !important;
    width: 280px;
}

/* --- Language dropdown: glass-morphism --- */
.language__dropdown .dropdown__list {
    background: rgba(20, 20, 20, 0.85) !important;
    backdrop-filter: blur(20px) saturate(1.3) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
}
.language__dropdown .dropdown__list li a {
    position: relative;
    padding-left: 20px !important;
}
.language__dropdown .dropdown__list li a::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.language__dropdown .dropdown__list li a:hover::before {
    background: var(--color-primary);
    box-shadow: 0 0 6px rgba(213, 0, 85, 0.5);
}

/* --- User dropdown: glass-morphism --- */
.header__meta .user__list.dropdown__list {
    background: rgba(20, 20, 20, 0.85) !important;
    backdrop-filter: blur(20px) saturate(1.3) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
}

/* --- User avatar: rotating ring animation --- */
.header__meta .user__profile .profile__avatar {
    position: relative;
    border: 2px solid var(--color-primary) !important;
    transition: border-color 0.3s ease;
}
.header__meta .user__profile .profile__avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: rgba(213, 0, 85, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.header__meta .user__profile:hover .profile__avatar::after {
    opacity: 1;
    animation: spin 1.5s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.header__meta .user__profile .profile__avatar::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(213, 0, 85, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.header__meta .user__profile:hover .profile__avatar::before {
    opacity: 1;
}

/* --- Subscribe/Sign In buttons: enhanced styling --- */
a.chameli-subscribe-btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.3s ease !important;
}
a.chameli-subscribe-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary), #ff6b9d);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}
a.chameli-subscribe-btn:hover::before {
    opacity: 1;
}
a.chameli-subscribe-btn:hover {
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 0, 85, 0.35);
}
a.chameli-subscribe-btn span,
a.chameli-subscribe-btn i {
    position: relative;
    z-index: 1;
}

/* Sign In button — Chameli style already, but add glow */
a.solid__btn,
.header__meta a.solid__btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
}
a.solid__btn::before,
.header__meta a.solid__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary), #ff6b9d, var(--color-primary));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}
a.solid__btn:hover::before,
.header__meta a.solid__btn:hover::before {
    opacity: 1;
    animation: gradient-shift 3s ease infinite;
}
a.solid__btn:hover,
.header__meta a.solid__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 0, 85, 0.4);
}
a.solid__btn span,
a.solid__btn i,
.header__meta a.solid__btn span,
.header__meta a.solid__btn i {
    position: relative;
    z-index: 1;
}

/* --- Mobile toggle: animated bars --- */
.header__toggle {
    transition: background 0.3s ease;
}
.header__toggle .bar {
    transition: all 0.3s ease;
}
.header__toggle .bar::before,
.header__toggle .bar::after {
    transition: all 0.3s ease;
}
.header__toggle:hover .bar {
    background: var(--color-primary);
}
.header__toggle:hover .bar::before {
    background: var(--color-primary);
    transform: translateY(2px);
}
.header__toggle:hover .bar::after {
    background: var(--color-primary);
    transform: translateY(-2px);
}

/* --- Flyout mobile menu: enhanced --- */
.flyoutMenu {
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.flyoutMenu.active {
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.7);
}
.flyoutMenu .menu__header-top .brand__logo {
    position: relative;
}
.flyoutMenu .flyout-main__menu li a.nav__link {
    position: relative;
    padding-left: 16px;
    transition: all 0.3s ease;
}
.flyoutMenu .flyout-main__menu li a.nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--color-primary);
    border-radius: 2px;
    transition: height 0.3s ease;
}
.flyoutMenu .flyout-main__menu li a.nav__link:hover::before {
    height: 60%;
}
.flyoutMenu .flyout-main__menu li a.nav__link i {
    color: var(--color-primary);
    font-size: 18px;
}
.flyoutMenu .flyout__btn .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.flyoutMenu .flyout__btn .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 0, 85, 0.3);
}

/* --- Live TV icon: signal animation --- */
.main__menu li a i.ri-broadcast-line {
    animation: live-signal 2s ease-in-out infinite;
}
@keyframes live-signal {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; text-shadow: 0 0 8px var(--color-primary); }
}

/* --- Dropdown list items: smooth hover animation --- */
.dropdown__list li a {
    transition: all 0.2s ease !important;
}
.dropdown__list li a:hover {
    transform: translateX(3px);
}

/* --- Header btn: subscription button when logged in --- */
.header__btn .btn.btn-primary {
    transition: all 0.3s ease !important;
}
.header__btn .btn.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(213, 0, 85, 0.3);
}

/* --- Responsive: smooth header adjustments --- */
@media (max-width: 1199px) {
    .header__wrapper .header__menu {
        display: none !important;
    }
    .header__toggle {
        display: flex !important;
    }
}
