.video-trigger-btn .btn-icon {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
    font-family: Arial, sans-serif !important;  /* 防止系统 emoji 字体 */
}

.elementor-video-button-wrapper {
    display: inline-block;
}

.video-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.video-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-icon {
    font-size: 0.8em;
}

/* 内嵌播放器 */
.video-inline-player {
    margin-top: 15px;
    overflow: hidden;
    background: #000;
}

.video-inline-player video {
    width: 100%;
    height: auto;
    display: block;
}

/* 灯箱遮罩 */
.video-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-lightbox-container {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-lightbox-container video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: #ff4444;
}