.featured-beats-swiper {
    padding: 12px 6px 45px;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.fbs-card {
    background: #efe1d6;
    border-radius: 18px;
    padding: 12px;
}

.fbs-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 190px;
}

.fbs-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fbs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 62px;
    height: 62px;

    border-radius: 50%;
    border: none;

    background: rgba(255,255,255,0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,0.95);

    font-size: 28px;
    cursor: pointer;

    box-shadow:
        0 4px 18px rgba(0,0,0,0.18),
        inset 0 1px 1px rgba(255,255,255,0.25);

    transition: all 0.3s ease;
}

.fbs-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.fbs-card h3 {
    font-size: 14px;
    margin: 12px 0 10px;
    line-height: 1.3;

    color: #000 !important;

    font-weight: 700;

    min-height: 38px;

    overflow: hidden;
    text-overflow: ellipsis;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fbs-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #e30000;
    color: #fff;

    text-align: center;
    text-decoration: none;

    padding: 10px 14px;

    border-radius: 14px;

    font-size: 17px;
    font-weight: 700;

    width: 100%;
    box-sizing: border-box;
}

.fbs-stats-row {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 12px;
}

.fbs-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fbs-stat-number {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.fbs-like-btn,
.fbs-eye-icon {
    background: none;
    border: none;
    padding: 0;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}

.fbs-liked {
    opacity: 0.5;
    pointer-events: none;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    background: #dd3930 !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 767px) {

    .featured-beats-swiper {
        padding: 10px 4px 40px;
    }

    .fbs-card {
        padding: 10px;
    }

    .fbs-image-wrap {
        height: 165px;
    }

    .fbs-card h3 {
        font-size: 14px;
        min-height: 38px;
    }

    .fbs-download-btn {
        font-size: 15px;
        padding: 9px 12px;
    }

    .fbs-play-btn {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .fbs-stat-number {
        font-size: 13px;
    }

    .fbs-like-btn,
    .fbs-eye-icon {
        font-size: 20px;
    }
}