/* ===========================================
   Vimeo Blocker Styles
   Version: 3.23.0
   =========================================== */

.kccm-vimeo-placeholder {
    position: relative;
    background: #1a1a2e;
    overflow: hidden;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Notice Container */
.kccm-vimeo-notice {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    padding: 30px 20px;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
}

/* Vimeo Play Icon */
.kccm-vimeo-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #00adef;
    line-height: 1;
}

/* Description Text */
.kccm-vimeo-notice p {
    margin: 0 0 15px 0;
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
}

/* Load Button - Vimeo Blue */
.kccm-vimeo-load-btn {
    background: #00adef;
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.kccm-vimeo-load-btn:hover {
    background: #0095d0;
    transform: translateY(-1px);
}

.kccm-vimeo-load-btn:active {
    transform: translateY(0);
}

/* Privacy Link */
.kccm-vimeo-notice a {
    color: #888;
    font-size: 12px;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}

.kccm-vimeo-notice a:hover {
    color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .kccm-vimeo-notice {
        padding: 20px 15px;
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .kccm-vimeo-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .kccm-vimeo-notice p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .kccm-vimeo-load-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
}

/* WordPress Block Editor Compatibility */
.wp-block-embed__wrapper .kccm-vimeo-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.wp-block-embed__wrapper .kccm-vimeo-placeholder .kccm-vimeo-notice {
    position: absolute;
}
