.ccl-video-cover {
    border-radius: 20px;
    min-height: 450px;
    overflow: hidden;
}

.ccl-video-play-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ccl-play-button {
    margin-bottom: 20px !important;
}

.ccl-play-button a {
    width: 90px;
    height: 90px;
    background-color: var(--color-warning);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 195, 37, 0.4);
    animation: ccl-pulse 2s infinite;
}

.ccl-play-button a:hover {
    transform: scale(1.1);
    background-color: #fff;
    color: var(--color-accent);
}

@keyframes ccl-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 195, 37, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 195, 37, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 195, 37, 0); }
}

@media (max-width: 781px) {
    .ccl-video-cover {
        min-height: 300px;
    }
    .ccl-play-button a {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
}
