.cys-swiper-container {
    width: 100%;
    height: auto;
    padding: 24px 24px 48px;
    box-sizing: border-box;
    position: relative;
}

.cys-slide {
    text-align: left;
    font-size: 16px;
    background: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}

.cys-slide:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.cys-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.cys-thumbnail-wrapper img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.cys-thumbnail-wrapper:hover img {
    transform: scale(1.03);
}

.cys-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.25));
    opacity: 0;
    transition: opacity .3s ease;
}

.cys-thumbnail-wrapper:hover .cys-play-overlay {
    opacity: 1;
}

.cys-play-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.cys-play-icon::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 20px;
    width: 0;
    height: 0;
    border-left: 18px solid #cc0000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.cys-content {
    width: 100%;
    padding: 14px 16px 18px;
    box-sizing: border-box;
}

.cys-video-title {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    text-align: center;
    padding: 0 16px;
    transition: color .2s ease;
}

.cys-video-title:hover {
    color: #cc0000;
}

.cys-video-desc {
    font-size: 14px;
    color: #5f6368;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination {
    bottom: 8px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #cc0000;
}
.cys-autoplay-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    padding: 8px 12px;
    border-radius: 16px;
    cursor: pointer;
}

.cys-autoplay-toggle[aria-pressed="true"] {
    background: rgba(0,0,0,0.35);
}
