.moobitv-carousel-container {
    padding: 20px 0;
    position: relative;
}

.moobitv-carousel-container .swiper {
    padding-bottom: 50px;
}

.moobitv-channel-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.moobitv-channel-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 15px rgba(59, 130, 246, 0.3);
}

.moobitv-channel-card .card-logo-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}

.moobitv-channel-card .card-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.moobitv-channel-card:hover .card-logo-box img {
    transform: scale(1.1);
}

.moobitv-channel-card .channel-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.moobitv-channel-card .channel-number {
    background: #3b82f6;
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
}

.moobitv-channel-card .channel-name {
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.moobitv-channel-card .program-info {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
}

.moobitv-channel-card .program-label {
    display: block;
    color: #3b82f6;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.moobitv-channel-card .program-name {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.moobitv-carousel-container .swiper-button-next,
.moobitv-carousel-container .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.moobitv-carousel-container .swiper-button-next:after,
.moobitv-carousel-container .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.moobitv-carousel-container .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}

.moobitv-carousel-container .swiper-pagination-bullet-active {
    background: #3b82f6;
    opacity: 1;
}