.swiper {
    position: relative;
}

.swiper-slide .live-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.swiper-slide .live-h3 {
    margin: 10px 0 5px;
    text-align: start;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Roboto Condensed;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
}

.swiper-slide .live-data {
    font-family: Roboto Condensed;
    text-align: start;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
}

.swiper-slide span {
    color: #666;
    font-size: 14px;
}

.playlist-section h2 {
    font-family: Roboto Condensed;
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    text-transform: uppercase;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-prev {
    left: 0px;
}

.swiper-button-next {
    right: 0px;
}

.banner-cupom {
    margin: 0 0 50px 0;
    text-align: center;
}

.banner-cupom img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

/* Skeleton */
.skeleton-thumb {
    width: 100%;
    height: 180px;
    background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
    background-size: 200% 100%;
    animation: pulse 1.5s infinite;
    border-radius: 10px;
    margin-bottom: 10px;
}

.skeleton-text {
    height: 16px;
    width: 80%;
    background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
    background-size: 200% 100%;
    animation: pulse 1.5s infinite;
    border-radius: 4px;
    margin: 0 auto;
}

@keyframes pulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-banner {
    height: 200px;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
    background-size: 200% 100%;
    animation: pulse 1.5s infinite;
    border-radius: 24px;
}

.playlist-section {
    padding-bottom: 5rem;
}