.vms-card {
    background: #111;
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vms-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vms-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: linear-gradient(135deg, #ff1744, #ff9100);
    color: #fff;
    padding: 4px 8px;
    border-radius: 999px;
}

.vms-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.vms-player-wrapper {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.vms-video,
.vms-embed-option iframe,
.vms-embed-option video,
.vms-embed-option embed {
    width: 100%;
    height: 360px;
    max-height: 60vh;
    display: block;
}

/* Asegurar iframes responsivos */
.vms-embed-option iframe {
    border: 0;
}

.vms-error-message {
    background: rgba(255, 23, 68, 0.15);
    color: #ff5252;
    padding: 8px 12px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 82, 82, 0.3);
}

/* Barra de opciones */
.vms-options-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.vms-btn-option {
    flex: 1 1 120px;
    border-radius: 999px;
    border: 1px solid #333;
    background: #1c1c1c;
    color: #eee;
    font-size: 13px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vms-btn-option:hover {
    background: #222;
    border-color: #ff5252;
    transform: translateY(-1px);
}

.vms-btn-option.vms-active {
    background: linear-gradient(135deg, #ff1744, #ff9100);
    border-color: #ff9100;
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 600px) {
    .vms-video,
    .vms-embed-option iframe,
    .vms-embed-option video,
    .vms-embed-option embed {
        height: 220px;
    }

    .vms-card {
        padding: 12px;
    }

    .vms-title {
        font-size: 14px;
    }
}