.pbw-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.pbw-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #e62222;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.pbw-btn:hover {
    background-color: #c91c1c;
    color: #ffffff;
    text-decoration: none;
}

.pbw-btn svg {
    flex-shrink: 0;
    fill: currentColor;
}

/* 视频弹窗 */
.pbw-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pbw-video-modal {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.pbw-video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.pbw-video-close:hover {
    opacity: 0.7;
}

.pbw-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.pbw-video-wrapper iframe,
.pbw-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 响应式 */
@media (max-width: 576px) {
    .pbw-container {
        flex-direction: column;
    }
    
    .pbw-btn {
        width: 100%;
        justify-content: center;
    }
}
